[VMR] Fix path to build.proj in build.ps1 (#18273)
This commit is contained in:
parent
f708a59e1a
commit
0076d3fb0c
1 changed files with 2 additions and 1 deletions
|
@ -38,8 +38,9 @@ function Build {
|
||||||
InitializeToolset
|
InitializeToolset
|
||||||
|
|
||||||
$bl = if ($binaryLog) { '/bl:' + (Join-Path $LogDir 'Build.binlog') } else { '' }
|
$bl = if ($binaryLog) { '/bl:' + (Join-Path $LogDir 'Build.binlog') } else { '' }
|
||||||
|
$buildProj = Join-Path $RepoRoot 'build.proj'
|
||||||
|
|
||||||
MSBuild "$PSScriptRoot\build.proj" `
|
MSBuild $buildProj `
|
||||||
$bl `
|
$bl `
|
||||||
--tl:off `
|
--tl:off `
|
||||||
/p:Configuration=$configuration `
|
/p:Configuration=$configuration `
|
||||||
|
|
Loading…
Add table
Reference in a new issue