This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Modified and simplified version of https://www.windowsazure.com/en-us/develop/net/common-tasks/continuous-delivery/ | |
#From: #https://gist.github.com/3694398 | |
$subscription = "[SubscriptionName]" #this the name from your .publishsettings file | |
$service = "[ServiceName]" #this is the name of the cloud service | |
$storageAccount = "[StorageAccountName]" #this is the name of the storage service | |
$slot = "production" #staging or production | |
$package = "[Fully Qualified Path to .cspkg]" | |
$configuration = "[Fully Qualified path to .cscfg]" | |
$publishSettingsFile = "[Path to .publishsettings file, relative is OK]" | |
$timeStampFormat = "g" |