debugging - Azure Web Role - Multiple websites don't compile when debugger is run in Visual Studio -
I have an Azure cloud service project that has a web role with many websites associated with it.
When I click on the "Run" button, fails to load debug symbols for all websites in the web role to debug other websites, before I run the debugger The web project has to be clearly prepared.
How can I configure the Azure Cloud service project to collect all the associated webs in a single one? Web role?
As part of this posting, support for Visual Studio 2012 for many websites within a single web role is quite poor (,).
When you click on the "Run" button in any solution, this does not mean that all the projects will be compiled. Only connected directly to the project that is currently running (and debug symbols have been updated) will be compiled.
Consider the following tasks:
- The main web role in the Identify solution is Web Project (this should be the one that matches the name of the web role in the Azure Cloud service project
- Right click on the web project
- Go
- "Solution" -> Go to "Projects"
- Each Check the checkbox next to the websites related to the web role.
- Click OK
By adding references to other web projects, this causes the compiler to compile another network when the Azure Cloud service project with debugger is run.
This will allow you to hit the "Run" button again with great sacrifice.
Comments
Post a Comment