We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f5402 commit 1a397a7Copy full SHA for 1a397a7
build.ps1
@@ -20,17 +20,8 @@ function Clean() {
20
}
21
22
function Build() {
23
- function b($target, $check=$True) {
24
- dotnet msbuild /t:$target /p:Configuration=$Configuration /p:ContinuousIntegrationBuild=true "$baseDir\src\NETProvider.slnx" /v:m /m
25
- if ($check) {
26
- Check-ExitCode
27
- }
28
29
- b 'Clean'
30
- # this sometimes fails on CI
31
- b 'Restore' $False
32
- b 'Restore'
33
- b 'Build'
+ dotnet clean "$baseDir\src\NETProvider.slnx" -c $Configuration -v m
+ dotnet build "$baseDir\src\NETProvider.slnx" -c $Configuration -p:ContinuousIntegrationBuild=true -v m
34
35
36
function Versions() {
0 commit comments