Bump CoreFx to rc2-23808

Workaround for issue 1294

Improve crossgen notifications
This commit is contained in:
Piotr Puszkiewicz 2016-02-09 15:07:36 -08:00
parent 199093b09c
commit 48797ea80a
67 changed files with 239 additions and 156 deletions

View file

@ -75,7 +75,6 @@ $BinariesForCoreHost | ForEach-Object {
# Crossgen Roslyn
if (-not (Test-Path "$StageOutputDir\bin\csc.ni.exe")) {
header "Crossgening Roslyn compiler ..."
_cmd "$RepoRoot\scripts\crossgen\crossgen_roslyn.cmd ""$StageOutputDir"""
}

View file

@ -81,7 +81,6 @@ find . -type f | xargs chmod 644
$REPOROOT/scripts/build/fix-mode-flags.sh
if [ ! -f "$OUTPUT_DIR/bin/csc.ni.exe" ]; then
info "Crossgenning Roslyn compiler ..."
$REPOROOT/scripts/crossgen/crossgen_roslyn.sh "$OUTPUT_DIR/bin"
fi

View file

@ -18,6 +18,9 @@ try {
_ "$RepoRoot\scripts\compile\compile-stage-1.ps1"
# Issue https://github.com/dotnet/cli/issues/1294
_ "$RepoRoot\scripts\build\restore-packages.ps1"
_ "$RepoRoot\scripts\compile\compile-stage-2.ps1"
} finally {
$env:PATH = $StartPath

View file

@ -20,4 +20,7 @@ $REPOROOT/scripts/compile/compile-corehost.sh
$REPOROOT/scripts/compile/compile-stage-1.sh
# Issue https://github.com/dotnet/cli/issues/1294
$REPOROOT/scripts/build/restore-packages.sh
$REPOROOT/scripts/compile/compile-stage-2.sh