Upgrade CLI version to 2.0.0-preview1-005685

This commit is contained in:
Kiran Challa 2017-04-03 12:13:45 -07:00
Родитель c127e6cb10
Коммит a690da9908
3 изменённых файлов: 9 добавлений и 3 удалений

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

@ -79,7 +79,10 @@ if (!($env:Path.Split(';') -icontains $dotnetLocalInstallFolder))
$env:Path = "$newPath"
}
# Temporarily install 1.1.1 to prevent build breaks for repos not yet converted
# Temporarily install these runtimes to prevent build breaks for repos not yet converted
# 1.0.4 - for tools
InstallSharedRuntime -version "1.0.4" -channel "preview"
# 1.1.1 - for test projects which haven't yet been converted to netcoreapp2.0
InstallSharedRuntime -version "1.1.1" -channel "release/1.1.0"
if ($sharedRuntimeVersion)

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

@ -123,7 +123,10 @@ else
[[ ":$PATH:" != *":$DOTNET_INSTALL_DIR:"* ]] && export PATH="$DOTNET_INSTALL_DIR:$PATH"
fi
# Temporarily install 1.1.1 to prevent build breaks for repos not yet converted
# Temporarily install these runtimes to prevent build breaks for repos not yet converted
# 1.0.4 - for tools
install_shared_runtime "1.0.4" "preview"
# 1.1.1 - for test projects which haven't yet been converted to netcoreapp2.0
install_shared_runtime "1.1.1" "release/1.1.0"
if [ "$sharedRuntimeVersion" != "" ]; then

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

@ -1 +1 @@
2.0.0-preview1-005418
2.0.0-preview1-005685