是否可以通过PowerShell或任何其他编程方式更改Web角色名称,而无需更改项目名称本身?我们需要更改角色名称以进行监视,更改项目名称将需要我们修改构建定义的大量工作。
答案 0 :(得分:1)
似乎有一种解决方法,即来自blog的MS开发人员,通过修改角色模式文件来更新角色名称。
希望它有所帮助。
答案 1 :(得分:0)
重命名Azure Cloud Service.ps1
import-module Azure
# download publish settings
Get-AzurePublishSettingsFile
# import settings you just downloaded
Import-AzurePublishSettingsFile "C:\Users\<user>\Downloads\MySub-DATE-credentials.publishsettings"
# view subscription details
Get-AzureSubscription
# select active subscription
Select-AzureSubscription 'MySub'
# view cloud services for selected sub
Get-AzureService
# update cloud service name/description
Set-AzureService 'myServiceName' 'Friendly Service Name' 'Detailed Service Description'