Skip to content

Commit

Permalink
update test framework in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
itn3000 committed Feb 10, 2022
1 parent 0c56654 commit cbb5a25
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ Task("Test")
var setting = new DotNetCoreTestSettings()
{
Configuration = configuration,
Framework = "netcoreapp2.0"
Framework = "net6.0"
};
DotNetCoreTest(IO.Path.Combine("PooledStream.Test", "PooledStream.Test.csproj"), setting);
setting.Framework = "netcoreapp3.0";
DotNetCoreTest(IO.Path.Combine("PooledStream.Test", "PooledStream.Test.csproj"), setting);
})
;
Task("Pack")
Expand Down

0 comments on commit cbb5a25

Please sign in to comment.