summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorElinor Fung <47805090+elinor-fung@users.noreply.github.com>2019-05-23 16:42:08 -0700
committerAaron Robinson <arobins@microsoft.com>2019-05-23 16:42:08 -0700
commit061fd2b8cdde0c59d28edddf4594fb1123dcea93 (patch)
treeb0e5ab7349ca20710ec3dff087525475e9dc3941 /build.cmd
parentabdee1f2fa9531c78eeadef6d0bb8fb1f823d011 (diff)
downloadcoreclr-061fd2b8cdde0c59d28edddf4594fb1123dcea93.tar.gz
coreclr-061fd2b8cdde0c59d28edddf4594fb1123dcea93.tar.bz2
coreclr-061fd2b8cdde0c59d28edddf4594fb1123dcea93.zip
Fix restoring internal tools (#24750)
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.cmd b/build.cmd
index b06c369912..1d5336f42e 100644
--- a/build.cmd
+++ b/build.cmd
@@ -394,10 +394,10 @@ if %__RestoreOptData% EQU 1 (
REM Parse the optdata package versions out of msbuild so that we can pass them on to CMake
set OptDataProjectFilePath=%__ProjectDir%\src\.nuget\optdata\optdata.csproj
-for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpPgoDataPackageVersion /p:ArcadeBuild^=true /nologo') do (
+for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpPgoDataPackageVersion /nologo') do (
set __PgoOptDataVersion=%%s
)
-for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpIbcDataPackageVersion /p:ArcadeBuild^=true /nologo') do (
+for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpIbcDataPackageVersion /nologo') do (
set __IbcOptDataVersion=%%s
)
@@ -646,7 +646,7 @@ if %__BuildCoreLib% EQU 1 (
if %__IbcOptimize% EQU 1 (
echo %__MsgPrefix%Commencing IBCMerge of System.Private.CoreLib for %__BuildOS%.%__BuildArch%.%__BuildType%
set IbcMergeProjectFilePath=%__ProjectDir%\src\.nuget\optdata\ibcmerge.csproj
- for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "!IbcMergeProjectFilePath!" /t:DumpIbcMergePackageVersion /p:ArcadeBuild^=true /nologo') do @(
+ for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "!IbcMergeProjectFilePath!" /t:DumpIbcMergePackageVersion /nologo') do @(
set __IbcMergeVersion=%%s
)