Upgrade compiler version and fix crossgen
The latest compiler nugets have missing dependencies, so this temporarily turns on -MissingDependenciesOK for crossgen
This commit is contained in:
parent
d9dd05f4a0
commit
5bfb626799
4 changed files with 56 additions and 56 deletions
|
@ -33,10 +33,10 @@ if not %errorlevel% EQU 0 goto fail
|
|||
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% Microsoft.CodeAnalysis.VisualBasic.dll >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% csc.exe >nul 2>nul
|
||||
crossgen /MissingDependenciesOK /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% csc.exe >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
crossgen /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% vbc.exe >nul 2>nul
|
||||
crossgen /MissingDependenciesOK /nologo /ReadyToRun /Platform_Assemblies_Paths %BIN_DIR% vbc.exe >nul 2>nul
|
||||
if not %errorlevel% EQU 0 goto fail
|
||||
|
||||
popd
|
||||
|
|
|
@ -38,7 +38,7 @@ chmod +x crossgen
|
|||
|
||||
./crossgen -nologo -platform_assemblies_paths $BIN_DIR Microsoft.CodeAnalysis.VisualBasic.dll
|
||||
|
||||
./crossgen -nologo -platform_assemblies_paths $BIN_DIR csc.exe
|
||||
./crossgen -MissingDependenciesOK -nologo -platform_assemblies_paths $BIN_DIR csc.exe
|
||||
|
||||
./crossgen -nologo -platform_assemblies_paths $BIN_DIR vbc.exe
|
||||
./crossgen -MissingDependenciesOK -nologo -platform_assemblies_paths $BIN_DIR vbc.exe
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"version": "1.0.0-*"
|
||||
},
|
||||
"Microsoft.DotNet.Compiler.Common": "1.0.0-*",
|
||||
"Microsoft.Net.Compilers.netcore": "1.2.0-beta-20151106-02"
|
||||
"Microsoft.Net.Compilers.netcore": "1.2.0-beta-20151111-02"
|
||||
},
|
||||
"frameworks": {
|
||||
"dnxcore50": { }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{
|
||||
"name": "dotnet-run",
|
||||
"version": "1.0.0-*",
|
||||
"compilationOptions": {
|
||||
|
@ -22,7 +22,7 @@
|
|||
"type": "build",
|
||||
"version": "1.0.0-*"
|
||||
},
|
||||
"Microsoft.Net.Compilers.netcore": "1.2.0-beta-20151106-02"
|
||||
"Microsoft.Net.Compilers.netcore": "1.2.0-beta-20151111-02"
|
||||
},
|
||||
"frameworks": {
|
||||
"dnxcore50": { }
|
||||
|
|
Loading…
Reference in a new issue