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 2a15cf2 commit 1470a90Copy full SHA for 1470a90
tools/windows/utils.ps1
@@ -16,16 +16,15 @@ function buildSolution($solution, $properties) {
16
$path = fullPath $solution
17
$directory = Split-Path -parent $path
18
$filename = Split-Path -leaf $path
19
- $nuget = fullPath "tools\windows\nuget.exe"
20
-
21
- & $nuget restore $path
22
23
24
$location = $(Get-Location)
25
Set-Location $directory
26
+ msbuild $filename /restore ("/p:$($properties)")
+ checkExitCode "Failed to build: $($path)"
+
27
msbuild $filename /m /t:Rebuild ("/p:$($properties)")
28
checkExitCode "Failed to build: $($path)"
29
30
Set-Location $location
31
-}
+}
0 commit comments