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

Source: AspNet/kvm@d63b199fc5
This commit is contained in:
ASP.NET Push Bot 2015-04-02 11:11:06 -07:00 committed by unknown
parent 1e5a740d11
commit 4bd9849e3d
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
#Requires -Version 3 #Requires -Version 3
if (Test-Path env:WEBSITE_SITE_NAME)
{
# This script is run in Azure Web Sites
# Disable progress indicator
$ProgressPreference = "SilentlyContinue"
}
$ScriptPath = $MyInvocation.MyCommand.Definition $ScriptPath = $MyInvocation.MyCommand.Definition
$Script:UseWriteHost = $true $Script:UseWriteHost = $true
@ -59,7 +66,7 @@ function _WriteOut {
### Constants ### Constants
$ProductVersion="1.0.0" $ProductVersion="1.0.0"
$BuildVersion="beta5-10353" $BuildVersion="beta5-10355"
$Authors="Microsoft Open Technologies, Inc." $Authors="Microsoft Open Technologies, Inc."
# If the Version hasn't been replaced... # If the Version hasn't been replaced...

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="beta5-10353" _DNVM_BUILDNUMBER="beta5-10355"
_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"