diff options
author | Steve MacLean <stmaclea@microsoft.com> | 2019-03-01 23:07:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 23:07:35 -0500 |
commit | 42bc2de2c63fe0c95a582e642ff97b2fe0d4bb7e (patch) | |
tree | 17cb448a25ea78394faba09f2f4b1b0b2b961183 /dotnet.cmd | |
parent | c1801e85024add717f518feb6a9caed60d54500f (diff) | |
download | coreclr-42bc2de2c63fe0c95a582e642ff97b2fe0d4bb7e.tar.gz coreclr-42bc2de2c63fe0c95a582e642ff97b2fe0d4bb7e.tar.bz2 coreclr-42bc2de2c63fe0c95a582e642ff97b2fe0d4bb7e.zip |
Use arcade's version of dotnet to build (#22755)
* Use arcade dotnet
* Add cmake_msbuild.cmd
Move msbuild.cmd to cmake_msbuild.bat
Document intent that this file is only used to resolve
Windows cmake dependency on desktop msbuild.exe
Remove one instance of msbuild.cmd
* Fix inittools.cmd
* Remove spurious setup_vs_tools.cmd calls
Diffstat (limited to 'dotnet.cmd')
-rw-r--r-- | dotnet.cmd | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/dotnet.cmd b/dotnet.cmd index 352444a6fc..922100ac3b 100644 --- a/dotnet.cmd +++ b/dotnet.cmd @@ -3,11 +3,6 @@ setlocal set "__ProjectDir=%~dp0" -call "%__ProjectDir%"\setup_vs_tools.cmd - -REM setup_vs_tools.cmd will correctly echo error message. -if NOT '%ERRORLEVEL%' == '0' exit /b 1 - :: Clear the 'Platform' env variable for this session, as it's a per-project setting within the build, and :: misleading value (such as 'MCD' in HP PCs) may lead to build breakage (issue: #69). set Platform= @@ -21,7 +16,7 @@ if NOT [%ERRORLEVEL%]==[0] ( pushd %~dp0 echo Running: dotnet %* -call "%~dp0\Tools\dotnetcli\dotnet.exe" %* +call "%~dp0\.dotnet\dotnet.exe" %* popd if NOT [%ERRORLEVEL%]==[0] ( exit /b 1 |