Adding csi and Microsoft.CodeAnalysis.CSharp.Scripting to the list of assemblies to crossgen.
This commit is contained in:
parent
f994f09e11
commit
9870a59be9
2 changed files with 26 additions and 0 deletions
|
@ -29,18 +29,26 @@ if exist mscorlib.ni.dll (
|
|||
|
||||
set READYTORUN=
|
||||
|
||||
echo Crossgenning System.Collections.Immutable
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% System.Collections.Immutable.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
echo Crossgenning System.Reflection.Metadata
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% System.Reflection.Metadata.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
echo Crossgenning Microsoft.CodeAnalysis
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
echo Crossgenning Microsoft.CodeAnalysis.CSharp
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.CSharp.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
echo Crossgenning Microsoft.CodeAnalysis.CSharp.Scripting
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.CSharp.Scripting.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
echo Crossgenning Microsoft.CodeAnalysis.VisualBasic
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.VisualBasic.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
@ -49,6 +57,10 @@ echo Crossgenning csc
|
|||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% csc.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
echo Crossgenning csi
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% csi.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
echo Crossgenning vbc
|
||||
crossgen /nologo %READYTORUN% /Platform_Assemblies_Paths %BIN_DIR% vbc.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
|
|
@ -54,19 +54,33 @@ chmod +x crossgen
|
|||
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR mscorlib.dll
|
||||
|
||||
info "Crossgenning System.Collections.Immutable"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR System.Collections.Immutable.dll
|
||||
|
||||
info "Crossgenning System.Reflection.Metadata"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR System.Reflection.Metadata.dll
|
||||
|
||||
info "Crossgenning Microsoft.CodeAnalysis"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR Microsoft.CodeAnalysis.dll
|
||||
|
||||
info "Crossgenning Microsoft.CodeAnalysis.CSharp"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR Microsoft.CodeAnalysis.CSharp.dll
|
||||
|
||||
info "Crossgenning Microsoft.CodeAnalysis.CSharp.Scripting"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR Microsoft.CodeAnalysis.CSharp.Scripting.dll
|
||||
|
||||
info "Crossgenning Microsoft.CodeAnalysis.VisualBasic"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR Microsoft.CodeAnalysis.VisualBasic.dll
|
||||
|
||||
info "Crossgenning csc"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR csc.dll
|
||||
[ -e csc.ni.exe ] && [ ! -e csc.ni.dll ] && mv csc.ni.exe csc.ni.dll
|
||||
|
||||
info "Crossgenning csi"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR csi.dll
|
||||
[ -e csi.ni.exe ] && [ ! -e csi.ni.dll ] && mv csi.ni.exe csi.ni.dll
|
||||
|
||||
info "Crossgenning vbc"
|
||||
./crossgen -nologo $READYTORUN -platform_assemblies_paths $BIN_DIR vbc.dll
|
||||
[ -e vbc.ni.exe ] && [ ! -e vbc.ni.dll ] && mv vbc.ni.exe vbc.ni.dll
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue