parent
0bd310cc73
commit
338c09434e
6
dnvm.ps1
6
dnvm.ps1
|
|
@ -67,7 +67,7 @@ function _WriteOut {
|
|||
|
||||
### Constants
|
||||
$ProductVersion="1.0.0"
|
||||
$BuildVersion="beta6-10380"
|
||||
$BuildVersion="beta6-10381"
|
||||
$Authors="Microsoft Open Technologies, Inc."
|
||||
|
||||
# If the Version hasn't been replaced...
|
||||
|
|
@ -751,7 +751,7 @@ function dnvm-help {
|
|||
$Script:ExitCodes = $ExitCodes.UnknownCommand
|
||||
return
|
||||
}
|
||||
$help = Get-Help "dnvm-$Command"
|
||||
$help = Get-Help "dnvm-$Command" -ShowWindow:$false
|
||||
if($PassThru) {
|
||||
$help
|
||||
} else {
|
||||
|
|
@ -833,7 +833,7 @@ function dnvm-help {
|
|||
_WriteOut -ForegroundColor $ColorScheme.Help_Header "commands: "
|
||||
Get-Command "$CommandPrefix*" |
|
||||
ForEach-Object {
|
||||
$h = Get-Help $_.Name
|
||||
$h = Get-Help $_.Name -ShowWindow:$false
|
||||
$name = $_.Name.Substring($CommandPrefix.Length)
|
||||
if($DeprecatedCommands -notcontains $name) {
|
||||
_WriteOut -NoNewLine " "
|
||||
|
|
|
|||
2
dnvm.sh
2
dnvm.sh
|
|
@ -2,7 +2,7 @@
|
|||
# Source this file from your .bash-profile or script to use
|
||||
|
||||
# "Constants"
|
||||
_DNVM_BUILDNUMBER="beta6-10380"
|
||||
_DNVM_BUILDNUMBER="beta6-10381"
|
||||
_DNVM_AUTHORS="Microsoft Open Technologies, Inc."
|
||||
_DNVM_RUNTIME_PACKAGE_NAME="dnx"
|
||||
_DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"
|
||||
|
|
|
|||
Loading…
Reference in New Issue