Merge branch 'rel/1.1.0' into dev

This commit is contained in:
Pranav K 2016-11-11 09:27:35 -08:00
Родитель 0331a07e4f a30b25597d
Коммит 57a3b91239
3 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -1 +1 @@
1.0.0-preview2-1-003175
1.0.0-preview2-1-003177

Просмотреть файл

@ -76,6 +76,7 @@ function EnsureDotNet() {
{
Write-Host -ForegroundColor Green "Installing .NET Command-Line Tools ..."
exec "$KoreBuildRoot\build\dotnet\dotnet-install.ps1" -Channel $dotnetChannel -Version $dotnetVersion -Architecture x64
exec "$KoreBuildRoot\build\dotnet\dotnet-install.ps1" -SharedRuntime -Channel 'preview' -Version '1.0.0' -Architecture x64
}
if (!($env:Path.Split(';') -icontains $dotnetLocalInstallFolder))
{

Просмотреть файл

@ -94,6 +94,8 @@ ensure_dotnet() {
__exec $DOTNET_INSTALL --channel $KOREBUILD_DOTNET_CHANNEL --version $KOREBUILD_DOTNET_VERSION >> $KOREBUILD_LOG
__exec $DOTNET_INSTALL --shared-runtime --channel preview --version 1.0.0 >> $KOREBUILD_LOG
# Add .NET installation directory to the path if it isn't yet included.
[[ ":$PATH:" != *":$DOTNET_INSTALL_DIR:"* ]] && export PATH="$DOTNET_INSTALL_DIR:$PATH"
fi