mirror of https://github.com/winsw/winsw
Target .NET Framework 4.6.1
parent
45463b0d7b
commit
3a7a332b84
|
@ -1,6 +1,6 @@
|
|||
<Project>
|
||||
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'netcoreapp3.1'">
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'netcoreapp3.1'">
|
||||
<DefineConstants>VNEXT</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ after_build:
|
|||
|
||||
test_script:
|
||||
- dotnet.exe test -f net40 --no-build src\Test\winswTests\winswTests.csproj
|
||||
- dotnet.exe test -f net45 --no-build src\Test\winswTests\winswTests.csproj
|
||||
- dotnet.exe test -f net461 --no-build src\Test\winswTests\winswTests.csproj
|
||||
- dotnet.exe test -f netcoreapp3.1 --no-build src\Test\winswTests\winswTests.csproj
|
||||
|
||||
artifacts:
|
||||
|
@ -45,8 +45,8 @@ artifacts:
|
|||
name: WinSW.NET2.exe
|
||||
- path: 'src\Core\ServiceWrapper\bin\Release\net40\WinSW.exe'
|
||||
name: WinSW.NET4.exe
|
||||
- path: 'src\Core\ServiceWrapper\bin\Release\net45\WinSW.exe'
|
||||
name: WinSW.NET45.exe
|
||||
- path: 'src\Core\ServiceWrapper\bin\Release\net461\WinSW.exe'
|
||||
name: WinSW.NET461.exe
|
||||
- path: 'src\Core\ServiceWrapper\bin\Release\netcoreapp3.1\publish\'
|
||||
name: WinSW.NETCore31
|
||||
- path: 'src\Core\ServiceWrapper\bin\Release\netcoreapp3.1\win-x64\publish\WindowsService.exe'
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFrameworks>net20;net40;net45;netcoreapp3.1</TargetFrameworks>
|
||||
<TargetFrameworks>net20;net40;net461;netcoreapp3.1</TargetFrameworks>
|
||||
<Version><!-- Populated by AppVeyor --></Version>
|
||||
<AssemblyTitle>Windows Service Wrapper</AssemblyTitle>
|
||||
<Description>Allows arbitrary process to run as a Windows service by wrapping it.</Description>
|
||||
|
@ -55,7 +55,7 @@
|
|||
<TargetPlatform>v4</TargetPlatform>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
|
||||
<TargetPlatform>v4.5</TargetPlatform>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net20;net40;net45;netcoreapp3.1</TargetFrameworks>
|
||||
<TargetFrameworks>net20;net40;net461;netcoreapp3.1</TargetFrameworks>
|
||||
<Version><!-- Populated by AppVeyor --></Version>
|
||||
<RootNamespace>winsw</RootNamespace>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
|
@ -31,7 +31,7 @@
|
|||
<Reference Include="System.Management" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
|
||||
<Reference Include="System.IO.Compression" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net20;net40;net45;netcoreapp3.1</TargetFrameworks>
|
||||
<TargetFrameworks>net20;net40;net461;netcoreapp3.1</TargetFrameworks>
|
||||
<Version><!-- Populated by AppVeyor --></Version>
|
||||
<RootNamespace>winsw.Plugins.RunawayProcessKiller</RootNamespace>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net20;net40;net45;netcoreapp3.1</TargetFrameworks>
|
||||
<TargetFrameworks>net20;net40;net461;netcoreapp3.1</TargetFrameworks>
|
||||
<Version><!-- Populated by AppVeyor --></Version>
|
||||
<RootNamespace>winsw.Plugins.SharedDirectoryMapper</RootNamespace>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net40;net45;netcoreapp3.1</TargetFrameworks>
|
||||
<TargetFrameworks>net40;net461;netcoreapp3.1</TargetFrameworks>
|
||||
<Version><!-- Populated by AppVeyor --></Version>
|
||||
<RootNamespace>winswTests</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
|
Loading…
Reference in New Issue