This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -2567,16 +2567,16 @@ Constants.allScenarios.each { scenario ->
25672567 if (isR2RScenario(scenario)) {
25682568 // Crossgen the framework assemblies.
25692569 buildCommands + = """
2570- for %%F in (%CORE_ROOT%\\ *.dll) do call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nxF
2571- goto skip_PrecompileAssembly
2570+ @ for %%F in (%CORE_ROOT%\\ *.dll) do @ call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nxF
2571+ @ goto skip_PrecompileAssembly
25722572
25732573:PrecompileAssembly
2574- REM Skip mscorlib since it is already precompiled.
2575- if /I "%3" == "mscorlib.dll" exit /b 0
2576- if /I "%3" == "mscorlib.ni.dll" exit /b 0
2574+ @ REM Skip mscorlib since it is already precompiled.
2575+ @ if /I "%3" == "mscorlib.dll" exit /b 0
2576+ @ if /I "%3" == "mscorlib.ni.dll" exit /b 0
25772577
2578- "%CORE_ROOT%\\ crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" "%2" >nul 2>nul
2579- if "%errorlevel%" == "-2146230517" (
2578+ "%CORE_ROOT%\\ crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" %2 >nul 2>nul
2579+ @ if "%errorlevel%" == "-2146230517" (
25802580 echo %2 is not a managed assembly.
25812581) else if "%errorlevel%" == "-2146234344" (
25822582 echo %2 is not a managed assembly.
@@ -2585,7 +2585,7 @@ if "%errorlevel%" == "-2146230517" (
25852585) else (
25862586 echo Precompiled %2
25872587)
2588- exit /b 0
2588+ @ exit /b 0
25892589
25902590:skip_PrecompileAssembly
25912591"""
You can’t perform that action at this time.
0 commit comments