Skip to content

Commit c814877

Browse files
authored
PR #510: Build the test bootstrapper app as netcoreapp3.1 instead of netcoreapp2.0
1 parent b29bf56 commit c814877

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/ICSharpCode.SharpZipLib.TestBootstrapper/ICSharpCode.SharpZipLib.TestBootstrapper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<ApplicationIcon />
77
<StartupObject />
88
</PropertyGroup>

tools/appveyor-test.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $resxml = ".\docs\nunit3-test-results-debug.xml";
55
#$tester = "nunit3-console .\test\ICSharpCode.SharpZipLib.Tests\bin\$($env:CONFIGURATION)\netcoreapp2.0\ICSharpCode.SharpZipLib.Tests.dll"
66

77
# Bootstrapper:
8-
$tester = "dotnet run -f netcoreapp2 -p $proj -c $env:CONFIGURATION";
8+
$tester = "dotnet run -f netcoreapp3.1 -p $proj -c $env:CONFIGURATION";
99
iex "$tester --explore=tests.xml";
1010

1111
[xml]$xml = Get-Content("tests.xml");

0 commit comments

Comments
 (0)