.NET Core 2+ Naming and Versioning

New file name structure for the runtime and the CLI
per: https://github.com/dotnet/designs/issues/2

The renaming of assets, therefore the dotnet installation scripts must change to accommodate.

Trivial:
"Write-Host" should be "Write-Output"
This commit is contained in:
John Beisner 2017-05-26 15:46:56 -07:00
parent 88a8826925
commit b48b7d2ea0
11 changed files with 165 additions and 117 deletions

View file

@ -5,17 +5,17 @@
function header([string]$message)
{
Write-Host -ForegroundColor Green "*** $message ***"
Write-Output -ForegroundColor Green "*** $message ***"
}
function info([string]$message)
{
Write-Host -ForegroundColor Yellow "*** $message ***"
Write-Output -ForegroundColor Yellow "*** $message ***"
}
function error([string]$message)
{
Write-Host -ForegroundColor Red "$message"
Write-Output -ForegroundColor Red "$message"
}
function setEnvIfDefault([string]$envVarName, [string]$value)