Integrate latest dnvm
This commit is contained in:
parent
763051e6b8
commit
1407c09c30
|
|
@ -59,7 +59,7 @@ function _WriteOut {
|
|||
|
||||
### Constants
|
||||
$ProductVersion="1.0.0"
|
||||
$BuildVersion="beta4-10334"
|
||||
$BuildVersion="beta4-10338"
|
||||
$Authors="Microsoft Open Technologies, Inc."
|
||||
|
||||
# If the Version hasn't been replaced...
|
||||
|
|
@ -1055,7 +1055,7 @@ function dnvm-use {
|
|||
Set-Path (Change-Path $env:Path "" ($RuntimeDirs))
|
||||
|
||||
if ($Persistent) {
|
||||
Console-Write "Removing all runtimes from user PATH"
|
||||
_WriteOut "Removing all runtimes from user PATH"
|
||||
$userPath = [Environment]::GetEnvironmentVariable("Path", [System.EnvironmentVariableTarget]::User)
|
||||
$userPath = Change-Path $userPath "" ($RuntimeDirs)
|
||||
[Environment]::SetEnvironmentVariable("Path", $userPath, [System.EnvironmentVariableTarget]::User)
|
||||
|
|
@ -1073,7 +1073,7 @@ function dnvm-use {
|
|||
Set-Path (Change-Path $env:Path $runtimeBin ($RuntimeDirs))
|
||||
|
||||
if ($Persistent) {
|
||||
Console-Write "Adding $runtimeBin to user PATH"
|
||||
_WriteOut "Adding $runtimeBin to user PATH"
|
||||
$userPath = [Environment]::GetEnvironmentVariable("Path", [System.EnvironmentVariableTarget]::User)
|
||||
$userPath = Change-Path $userPath $runtimeBin ($RuntimeDirs)
|
||||
[Environment]::SetEnvironmentVariable("Path", $userPath, [System.EnvironmentVariableTarget]::User)
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# Source this file from your .bash-profile or script to use
|
||||
|
||||
# "Constants"
|
||||
_DNVM_BUILDNUMBER="beta4-10334"
|
||||
_DNVM_BUILDNUMBER="beta4-10338"
|
||||
_DNVM_AUTHORS="Microsoft Open Technologies, Inc."
|
||||
_DNVM_RUNTIME_PACKAGE_NAME="dnx"
|
||||
_DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"
|
||||
|
|
|
|||
Loading…
Reference in New Issue