⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh

Source: AspNet/kvm@07bff51bfe
This commit is contained in:
ASP.NET Push Bot 2015-05-28 21:43:14 -07:00 committed by unknown
parent 0bd310cc73
commit 338c09434e
2 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ function _WriteOut {
### Constants ### Constants
$ProductVersion="1.0.0" $ProductVersion="1.0.0"
$BuildVersion="beta6-10380" $BuildVersion="beta6-10381"
$Authors="Microsoft Open Technologies, Inc." $Authors="Microsoft Open Technologies, Inc."
# If the Version hasn't been replaced... # If the Version hasn't been replaced...
@ -751,7 +751,7 @@ function dnvm-help {
$Script:ExitCodes = $ExitCodes.UnknownCommand $Script:ExitCodes = $ExitCodes.UnknownCommand
return return
} }
$help = Get-Help "dnvm-$Command" $help = Get-Help "dnvm-$Command" -ShowWindow:$false
if($PassThru) { if($PassThru) {
$help $help
} else { } else {
@ -833,7 +833,7 @@ function dnvm-help {
_WriteOut -ForegroundColor $ColorScheme.Help_Header "commands: " _WriteOut -ForegroundColor $ColorScheme.Help_Header "commands: "
Get-Command "$CommandPrefix*" | Get-Command "$CommandPrefix*" |
ForEach-Object { ForEach-Object {
$h = Get-Help $_.Name $h = Get-Help $_.Name -ShowWindow:$false
$name = $_.Name.Substring($CommandPrefix.Length) $name = $_.Name.Substring($CommandPrefix.Length)
if($DeprecatedCommands -notcontains $name) { if($DeprecatedCommands -notcontains $name) {
_WriteOut -NoNewLine " " _WriteOut -NoNewLine " "

View File

@ -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-10380" _DNVM_BUILDNUMBER="beta6-10381"
_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"