From 44cab9c064d82c0fe777c2d78cfde4b5f9503d9c Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Mon, 17 Aug 2020 22:16:19 +0100 Subject: [PATCH] Build the test bootstrapper app as netcoreapp3.1 instead of netcoreapp2.0 --- .../ICSharpCode.SharpZipLib.TestBootstrapper.csproj | 2 +- tools/appveyor-test.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ICSharpCode.SharpZipLib.TestBootstrapper/ICSharpCode.SharpZipLib.TestBootstrapper.csproj b/test/ICSharpCode.SharpZipLib.TestBootstrapper/ICSharpCode.SharpZipLib.TestBootstrapper.csproj index 3f599186e..0218e5d4d 100644 --- a/test/ICSharpCode.SharpZipLib.TestBootstrapper/ICSharpCode.SharpZipLib.TestBootstrapper.csproj +++ b/test/ICSharpCode.SharpZipLib.TestBootstrapper/ICSharpCode.SharpZipLib.TestBootstrapper.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.0 + netcoreapp3.1 diff --git a/tools/appveyor-test.ps1 b/tools/appveyor-test.ps1 index b46519cb6..0005b5c3d 100644 --- a/tools/appveyor-test.ps1 +++ b/tools/appveyor-test.ps1 @@ -5,7 +5,7 @@ $resxml = ".\docs\nunit3-test-results-debug.xml"; #$tester = "nunit3-console .\test\ICSharpCode.SharpZipLib.Tests\bin\$($env:CONFIGURATION)\netcoreapp2.0\ICSharpCode.SharpZipLib.Tests.dll" # Bootstrapper: -$tester = "dotnet run -f netcoreapp2 -p $proj -c $env:CONFIGURATION"; +$tester = "dotnet run -f netcoreapp3.1 -p $proj -c $env:CONFIGURATION"; iex "$tester --explore=tests.xml"; [xml]$xml = Get-Content("tests.xml");