Azure 云服务与现有 ccproj 配置文件的持续集成
Azure Cloud Service continuous integration with existing ccproj profile
如何使用 Cloud Project 中配置文件的发布设置进行持续集成?
使用默认 TfvcContinuousDeploymentTemplate.12.xaml
时,发布会忽略我的一些个人资料设置。它不使用正确的存储帐户并始终发布到临时环境。
以下是我的开发发布配置文件的设置:
这是我们构建定义的当前状态:
"Path to Deployment Settings" 听起来是正确的,但实际上是 only for Azure Websites。
如何使用我的 .azurePubxml 文件中指定的所有配置文件设置来发布它?
CI 模板 TfvcContinuousDeploymentTemplate.12.xaml
不会使用您的发布配置文件。 6. Deployment > Deployment > Windows Azure Deployment Environment
中配置相关设置(部署槽位、存储账户名称、...)
/p:TargetProfile=Development
仅指定服务配置(选择正确的 .cscfg 文件),而不是发布配置文件。
如果您需要配置其他功能,例如远程调试,则必须在 2. Build > 5. Advanced > MSBuild arguments
中添加 additional msbuild parameters。
如何使用 Cloud Project 中配置文件的发布设置进行持续集成?
使用默认 TfvcContinuousDeploymentTemplate.12.xaml
时,发布会忽略我的一些个人资料设置。它不使用正确的存储帐户并始终发布到临时环境。
以下是我的开发发布配置文件的设置:
这是我们构建定义的当前状态:
"Path to Deployment Settings" 听起来是正确的,但实际上是 only for Azure Websites。
如何使用我的 .azurePubxml 文件中指定的所有配置文件设置来发布它?
CI 模板 TfvcContinuousDeploymentTemplate.12.xaml
不会使用您的发布配置文件。 6. Deployment > Deployment > Windows Azure Deployment Environment
/p:TargetProfile=Development
仅指定服务配置(选择正确的 .cscfg 文件),而不是发布配置文件。
如果您需要配置其他功能,例如远程调试,则必须在 2. Build > 5. Advanced > MSBuild arguments
中添加 additional msbuild parameters。