Visual Studio Team Services Azure部署任务无法部署Web应用程序

时间:2016-03-04 15:45:12

标签: visual-studio azure-web-sites azure-deployment

我们最近提出了一个新的Azure帐户,正在开发一个新的应用程序,作为Web应用程序部署到它。虽然我们能够从Visual Studio 2015部署到我们的暂存槽,但是当尝试从Visual Studio Team Services(由Microsoft托管)部署自动构建时,我们收到以下错误:

Get-AzureWebSite -Name $APPLICATION -ErrorAction SilentlyContinue -ErrorVariable azureWebSiteError -Slot staging
System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.WindowsAzure.Commands.Websites.GetAzureWebsiteCommand.Do(Action call) in d:\workspace\powershell-publish\src\ServiceManagement\Services\Commands\Websites\GetAzureWebSite.cs:line 138
at Microsoft.WindowsAzure.Commands.Utilities.Common.AzureSMCmdlet.ProcessRecord() in d:\workspace\powershell-publish\src\ServiceManagement\Common\Commands.ServiceManagement.Common\AzureSMCmdlet.cs:line 174
New-AzureWebSite -Name $APPLICATION -Location North Central US -Slot staging
Conflict: Website with given name $APPLICATION already exists.
Publish-AzureWebsiteProject -Name "$APPLICATION" -Package "C:\a\1\a\$APPLICATION.zip" -Slot "staging"  -ErrorVariable publishAzureWebsiteError
The website $APPLICATION was not found. Please specify a valid website name.
Cannot get website, deployment status is not updated

这是一个相当重要的问题,因为它阻止我们此时使用持续部署。是否有任何解决方法或配置设置我们应该注意解决这个问题?

3 个答案:

答案 0 :(得分:2)

如果Web App启用了VS 2015调试,则存在导致从VSTS发布失败的已知问题。您能否检查一下是否属于这种情况,并在关闭Azure门户中的调试后再试一次?

该问题很快就会得到解决,因此请将其视为临时解决方法。

答案 1 :(得分:1)

这最终可以追溯到两个问题。

第一个问题是我们需要加载不同的管理证书,因为我们使用的证书是默认为不同的帐户。这可以追溯到一个帐户与多个订阅相关联的问题。在撰写本文时,似乎没有一种方法可以指定which subscription to download

第二个问题似乎与David Ebbo在known bug中提到的answer有关。

答案 2 :(得分:0)

你可以尝试几件事:

  • 由于您提到您有2个订阅,请确保您上面的脚本是针对正确的订阅运行的,如果不是,它会给出您看到的确切错误。放一个:

    Get-AzureSubscription -Current

命令位于脚本顶部,看看是否符合您的期望。

  • VSTS有一个用于部署到Web应用程序的构建任务,您可以使用该任务部署该程序包吗?

enter image description here