Skip to content

Commit

Permalink
Fixed target framework for test project
Browse files Browse the repository at this point in the history
  • Loading branch information
deqenq committed Mar 28, 2021
1 parent c9e736c commit 3d99d5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cake
Expand Up @@ -52,7 +52,7 @@ Task("Test")
var settings = new DotNetCoreTestSettings
{
Configuration = configuration,
Framework = "netcoreapp2.1",
Framework = "netcoreapp5.0",
Loggers = new List<string>() {"trx"},
VSTestReportPath = testReport.FullPath,
};
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Wget.Tests/Cake.Wget.Tests.csproj
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp5.0</TargetFramework>
<LangVersion>latest</LangVersion>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
Expand Down

0 comments on commit 3d99d5a

Please sign in to comment.