parent
8794e3a795
commit
9e016963bf
10
dnvm.ps1
10
dnvm.ps1
|
|
@ -67,7 +67,7 @@ function _WriteOut {
|
||||||
|
|
||||||
### Constants
|
### Constants
|
||||||
$ProductVersion="1.0.0"
|
$ProductVersion="1.0.0"
|
||||||
$BuildVersion="beta6-10386"
|
$BuildVersion="beta6-10387"
|
||||||
$Authors="Microsoft Open Technologies, Inc."
|
$Authors="Microsoft Open Technologies, Inc."
|
||||||
|
|
||||||
# If the Version hasn't been replaced...
|
# If the Version hasn't been replaced...
|
||||||
|
|
@ -912,7 +912,7 @@ function dnvm-alias {
|
||||||
[string]$Version,
|
[string]$Version,
|
||||||
|
|
||||||
[Alias("arch")]
|
[Alias("arch")]
|
||||||
[ValidateSet("", "x86","x64")]
|
[ValidateSet("", "x86", "x64", "arm")]
|
||||||
[string]$Architecture = "",
|
[string]$Architecture = "",
|
||||||
|
|
||||||
[Alias("r")]
|
[Alias("r")]
|
||||||
|
|
@ -968,7 +968,7 @@ function dnvm-upgrade {
|
||||||
[string]$Alias = "default",
|
[string]$Alias = "default",
|
||||||
|
|
||||||
[Alias("arch")]
|
[Alias("arch")]
|
||||||
[ValidateSet("", "x86","x64")]
|
[ValidateSet("", "x86", "x64", "arm")]
|
||||||
[Parameter(Mandatory=$false)]
|
[Parameter(Mandatory=$false)]
|
||||||
[string]$Architecture = "",
|
[string]$Architecture = "",
|
||||||
|
|
||||||
|
|
@ -1030,7 +1030,7 @@ function dnvm-install {
|
||||||
[string]$VersionNuPkgOrAlias,
|
[string]$VersionNuPkgOrAlias,
|
||||||
|
|
||||||
[Alias("arch")]
|
[Alias("arch")]
|
||||||
[ValidateSet("", "x86","x64")]
|
[ValidateSet("", "x86", "x64", "arm")]
|
||||||
[Parameter(Mandatory=$false)]
|
[Parameter(Mandatory=$false)]
|
||||||
[string]$Architecture = "",
|
[string]$Architecture = "",
|
||||||
|
|
||||||
|
|
@ -1244,7 +1244,7 @@ function dnvm-use {
|
||||||
[string]$VersionOrAlias,
|
[string]$VersionOrAlias,
|
||||||
|
|
||||||
[Alias("arch")]
|
[Alias("arch")]
|
||||||
[ValidateSet("", "x86","x64")]
|
[ValidateSet("", "x86", "x64", "arm")]
|
||||||
[Parameter(Mandatory=$false)]
|
[Parameter(Mandatory=$false)]
|
||||||
[string]$Architecture = "",
|
[string]$Architecture = "",
|
||||||
|
|
||||||
|
|
|
||||||
2
dnvm.sh
2
dnvm.sh
|
|
@ -2,7 +2,7 @@
|
||||||
# Source this file from your .bash-profile or script to use
|
# Source this file from your .bash-profile or script to use
|
||||||
|
|
||||||
# "Constants"
|
# "Constants"
|
||||||
_DNVM_BUILDNUMBER="beta6-10386"
|
_DNVM_BUILDNUMBER="beta6-10387"
|
||||||
_DNVM_AUTHORS="Microsoft Open Technologies, Inc."
|
_DNVM_AUTHORS="Microsoft Open Technologies, Inc."
|
||||||
_DNVM_RUNTIME_PACKAGE_NAME="dnx"
|
_DNVM_RUNTIME_PACKAGE_NAME="dnx"
|
||||||
_DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"
|
_DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue