Skip to content

Commit 4bd9849

Browse files
ASP.NET Push Botunknown
authored andcommitted
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: aspnet/dnvm@d63b199
1 parent 1e5a740 commit 4bd9849

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

dnvm.ps1

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#Requires -Version 3
22

3+
if (Test-Path env:WEBSITE_SITE_NAME)
4+
{
5+
# This script is run in Azure Web Sites
6+
# Disable progress indicator
7+
$ProgressPreference = "SilentlyContinue"
8+
}
9+
310
$ScriptPath = $MyInvocation.MyCommand.Definition
411

512
$Script:UseWriteHost = $true
@@ -59,7 +66,7 @@ function _WriteOut {
5966

6067
### Constants
6168
$ProductVersion="1.0.0"
62-
$BuildVersion="beta5-10353"
69+
$BuildVersion="beta5-10355"
6370
$Authors="Microsoft Open Technologies, Inc."
6471

6572
# If the Version hasn't been replaced...

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="beta5-10353"
5+
_DNVM_BUILDNUMBER="beta5-10355"
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)