如何在本地运行时测试更改Azure服务配置设置?

时间:2012-08-31 13:07:49

标签: azure azure-configuration azure-compute-emulator

我正在编写Azure应用程序以使用Azure服务配置设置,以便我们可以实时更改它。我可以通过在Azure门户网站中部署然后更改它们来测试它。

如何在我的本地azure计算机模拟器上实时更改服务配置?

1 个答案:

答案 0 :(得分:14)

要更新服务配置,您需要修改* .cscfg文件并执行csrun.exe(在 C:\ Program Files \ Microsoft SDKs \ Windows Azure \ Emulator 中):

csrun.exe /update:<deployment-id>;<service-configuration-file>

请注意,这似乎仅在没有调试器的情况下运行应用程序时才有效。

我最近在这里写了一篇博文:Controlling your instances in the Windows Azure Compute Emulator(查看在模拟器中处理RoleEnvironment.Changing事件)。