Skip to content

Commit

Permalink
#11: ci build unit test net5
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ieremenko committed Sep 20, 2020
1 parent f1b4b05 commit 0b2efbe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Build/build-locally-tasks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ Task UnitTestCore31 {
Exec { .\step-unit-test.ps1 -Framework netcoreapp3.1 }
}

Task UnitTestNet50 {
Exec { .\step-unit-test.ps1 -Framework net5.0 }
}

Task ThirdPartyNotices {
Exec { .\step-third-party-notices.ps1 }
}
Expand Down
2 changes: 1 addition & 1 deletion Build/step-unit-test.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[CmdletBinding()]
param (
[Parameter(Mandatory=$true)]
[ValidateSet("net461", "netcoreapp2.1", "netcoreapp3.1")]
[ValidateSet("net461", "netcoreapp2.1", "netcoreapp3.1", "net5.0")]
[string]
$Framework
)
Expand Down

0 comments on commit 0b2efbe

Please sign in to comment.