From 94ca41874dea67005e59306a17998c7817d38b70 Mon Sep 17 00:00:00 2001 From: PiotrP Date: Fri, 11 Mar 2016 12:20:04 -0800 Subject: [PATCH 1/2] FragileNonVersionable --- scripts/dotnet-cli-build/CompileTargets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dotnet-cli-build/CompileTargets.cs b/scripts/dotnet-cli-build/CompileTargets.cs index 1fc300ce0..e7e29c510 100644 --- a/scripts/dotnet-cli-build/CompileTargets.cs +++ b/scripts/dotnet-cli-build/CompileTargets.cs @@ -342,7 +342,7 @@ namespace Microsoft.DotNet.Cli.Build foreach (var assemblyToCrossgen in AssembliesToCrossGen) { c.Info($"Crossgenning {assemblyToCrossgen}"); - ExecInSilent(outputDir, crossgen, "-nologo", "-platform_assemblies_paths", outputDir, assemblyToCrossgen); + ExecInSilent(outputDir, crossgen, "-FragileNonVersionable", "-nologo", "-platform_assemblies_paths", outputDir, assemblyToCrossgen); } c.Info("Crossgen complete"); From 5ae6dcbbdee110f6af227a492234cb376b40bd14 Mon Sep 17 00:00:00 2001 From: PiotrP Date: Fri, 11 Mar 2016 12:39:36 -0800 Subject: [PATCH 2/2] Hard-code stage0 on Mac, Linux to use 1.0.0.001665, which contained a NuGet believed not to contain current regressions. --- scripts/run-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-build.sh b/scripts/run-build.sh index 076abfdb2..c6f8f0961 100755 --- a/scripts/run-build.sh +++ b/scripts/run-build.sh @@ -85,7 +85,7 @@ done < "$DIR/../branchinfo.txt" # Ensure the latest stage0 is installed export CHANNEL=$RELEASE_SUFFIX -$DIR/obtain/install.sh --channel $CHANNEL +$DIR/obtain/install.sh --channel $CHANNEL --version 1.0.0.001665 # Put stage 0 on the PATH (for this shell only) PATH="$DOTNET_INSTALL_DIR/bin:$PATH"