Windows Azure emulator without admin privileges

后端 未结 3 1692
你的背包
你的背包 2021-01-17 16:01

How can you avoid future for allowing the Windows Azure emulator in Visual Studio to be able to run without needing admin privileges?

3条回答
  •  轮回少年
    2021-01-17 16:51

    It is now possible (as of Windows Azure SDK 2.1) to run the azure emulator without admin privileges. You can choose a 'Use Emulator Express' option in the project properties in Visual Studio, see Debugging a Cloud Service with Emulator Express.

    You can also, pass /useemulatorexpress to csrun on the command line.

    enter image description here

    Limitations Before you use Emulator Express, you should be aware of some limitations:

    • Your cloud service can contain multiple roles, but each role is limited to one instance.

    • You can't access port numbers below 1000. For example, if you use an authentication provider that normally uses a port below 1000, you might need to change this value to a port number that's above 1000.

    • Any limitations that apply to the Windows Azure Compute Emulator also apply to Emulator Express. For example, you can't have more than 50 role instances per deployment.

提交回复
热议问题