Skip to content

Commit

Permalink
PR #510: Build the test bootstrapper app as netcoreapp3.1 instead of …
Browse files Browse the repository at this point in the history
…netcoreapp2.0
  • Loading branch information
Numpsy committed Feb 13, 2021
1 parent b29bf56 commit c814877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion tools/appveyor-test.ps1
Expand Up @@ -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");
Expand Down

0 comments on commit c814877

Please sign in to comment.