Merge pull request #1808 from dotnet/piotrpMSFT/issue1785/FragileNonVersionable

FragileNonVersionable
This commit is contained in:
Piotr Puszkiewicz 2016-03-11 13:50:03 -08:00
commit c211e8d794
2 changed files with 2 additions and 2 deletions

View file

@ -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");

View file

@ -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"