diff --git a/Directory.Build.targets b/Directory.Build.targets index fbd2893..3d3afd7 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -1,6 +1,6 @@  - + VNEXT diff --git a/appveyor.yml b/appveyor.yml index 0be64c1..bd76124 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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' diff --git a/src/Core/ServiceWrapper/winsw.csproj b/src/Core/ServiceWrapper/winsw.csproj index eb23a24..4a54097 100644 --- a/src/Core/ServiceWrapper/winsw.csproj +++ b/src/Core/ServiceWrapper/winsw.csproj @@ -2,7 +2,7 @@ Exe - net20;net40;net45;netcoreapp3.1 + net20;net40;net461;netcoreapp3.1 Windows Service Wrapper Allows arbitrary process to run as a Windows service by wrapping it. @@ -55,7 +55,7 @@ v4 - + v4.5 diff --git a/src/Core/WinSWCore/WinSWCore.csproj b/src/Core/WinSWCore/WinSWCore.csproj index 0cfb363..40bcd01 100644 --- a/src/Core/WinSWCore/WinSWCore.csproj +++ b/src/Core/WinSWCore/WinSWCore.csproj @@ -1,7 +1,7 @@  - net20;net40;net45;netcoreapp3.1 + net20;net40;net461;netcoreapp3.1 winsw true @@ -31,7 +31,7 @@ - + diff --git a/src/Plugins/RunawayProcessKiller/RunawayProcessKiller.csproj b/src/Plugins/RunawayProcessKiller/RunawayProcessKiller.csproj index 34d777e..7bbde10 100644 --- a/src/Plugins/RunawayProcessKiller/RunawayProcessKiller.csproj +++ b/src/Plugins/RunawayProcessKiller/RunawayProcessKiller.csproj @@ -1,7 +1,7 @@  - net20;net40;net45;netcoreapp3.1 + net20;net40;net461;netcoreapp3.1 winsw.Plugins.RunawayProcessKiller true diff --git a/src/Plugins/SharedDirectoryMapper/SharedDirectoryMapper.csproj b/src/Plugins/SharedDirectoryMapper/SharedDirectoryMapper.csproj index 3219d86..6d1aebc 100644 --- a/src/Plugins/SharedDirectoryMapper/SharedDirectoryMapper.csproj +++ b/src/Plugins/SharedDirectoryMapper/SharedDirectoryMapper.csproj @@ -1,7 +1,7 @@  - net20;net40;net45;netcoreapp3.1 + net20;net40;net461;netcoreapp3.1 winsw.Plugins.SharedDirectoryMapper true diff --git a/src/Test/winswTests/winswTests.csproj b/src/Test/winswTests/winswTests.csproj index c422c45..fd78de1 100644 --- a/src/Test/winswTests/winswTests.csproj +++ b/src/Test/winswTests/winswTests.csproj @@ -1,7 +1,7 @@ - net40;net45;netcoreapp3.1 + net40;net461;netcoreapp3.1 winswTests