[Tizen] Reduce arm_phdr_cb call overhead
[platform/upstream/coreclr.git] / dotnet.cmd
index 352444a..dc2dd4c 100644 (file)
@@ -3,25 +3,26 @@ 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=
 set __ProjectDir=
 
-:: Restore the Tools directory
-call %~dp0init-tools.cmd
+:: Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism
+set DOTNET_MULTILEVEL_LOOKUP=0
+
+:: Disable first run since we do not need all ASP.NET packages restored.
+set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
+
+:: Install dotnet
+call %~dp0\init-dotnet.cmd
 if NOT [%ERRORLEVEL%]==[0] (
-  exit /b 1
+  exit /b %ERRORLEVEL%
 )
 
 pushd %~dp0
 echo Running: dotnet %*
-call "%~dp0\Tools\dotnetcli\dotnet.exe" %*
+call "%~dp0\.dotnet\dotnet.exe" %*
 popd
 if NOT [%ERRORLEVEL%]==[0] (
   exit /b 1