How do I set up a local development environment for IIS Express, Web API, and MVC Web Project?

I'm looking for a solution that makes it easier to run a local solution with an ASP.NET MVC web project and a web API REST service project.

The customization of multiple startup projects is saved in the .suo file and is not checked out in the repository as it is a specific user settings file. Additionally, IIS Express is configured outside of the solution in the user's current directory.

Any suggestions to support this scenario with multiple startup scripts in a command script ensuring the same ports are assigned to everyone who dumps the repository from the original control?

Note . I don't want to move the Web API controllers to the web solution. The segregation of the two designs is important in this architecture.

+3


source to share





All Articles