⬆️ 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
$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 " "

View File

@ -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"