Azure 的 "Service Configuration" 存储在哪里?

Where is the "Service Configuration" of Azure stored?

我正在为 Azure 云服务创建构建服务器。 它失败并显示消息:

" C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Windows Azure Tools.9\Microsoft.WindowsAzure.targets(373,5): error WAT200: No default service configuration "ServiceConfiguration.cscfg" could be found in the project".

当项目在本地编译时一切正常,并且选择了正确的配置。

当我在项目属性的开发选项卡中更改服务配置时,构建会在本地选择正确的配置。

问题是 "Service Configuration" 选项的确切存储是什么,我如何将它传播到构建服务器?

请检查您为 TargetProfile 属性 指定的值,它对应于为打包或部署选择的配置。并且请确保您在 TargetProfile 属性 中指定的服务配置文件是否包含在您的源文件夹中。此外,您可以参考this article了解更多关于如何使用MSBuild构建包的信息。