Skip to content

Commit 338c094

Browse files
ASP.NET Push Botunknown
authored andcommitted
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: aspnet/dnvm@07bff51
1 parent 0bd310c commit 338c094

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dnvm.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function _WriteOut {
6767

6868
### Constants
6969
$ProductVersion="1.0.0"
70-
$BuildVersion="beta6-10380"
70+
$BuildVersion="beta6-10381"
7171
$Authors="Microsoft Open Technologies, Inc."
7272

7373
# If the Version hasn't been replaced...
@@ -751,7 +751,7 @@ function dnvm-help {
751751
$Script:ExitCodes = $ExitCodes.UnknownCommand
752752
return
753753
}
754-
$help = Get-Help "dnvm-$Command"
754+
$help = Get-Help "dnvm-$Command" -ShowWindow:$false
755755
if($PassThru) {
756756
$help
757757
} else {
@@ -833,7 +833,7 @@ function dnvm-help {
833833
_WriteOut -ForegroundColor $ColorScheme.Help_Header "commands: "
834834
Get-Command "$CommandPrefix*" |
835835
ForEach-Object {
836-
$h = Get-Help $_.Name
836+
$h = Get-Help $_.Name -ShowWindow:$false
837837
$name = $_.Name.Substring($CommandPrefix.Length)
838838
if($DeprecatedCommands -notcontains $name) {
839839
_WriteOut -NoNewLine " "

dnvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Source this file from your .bash-profile or script to use
33

44
# "Constants"
5-
_DNVM_BUILDNUMBER="beta6-10380"
5+
_DNVM_BUILDNUMBER="beta6-10381"
66
_DNVM_AUTHORS="Microsoft Open Technologies, Inc."
77
_DNVM_RUNTIME_PACKAGE_NAME="dnx"
88
_DNVM_RUNTIME_FRIENDLY_NAME=".NET Execution Environment"

0 commit comments

Comments
 (0)