asp.net mvc - Visual studio: disable web development server for some web projects -


I am working on a web platform that uses ASP.NET MVC and supports the plugin. In this forum, there is a folder under each plugin / plugins folder. For example, plugin A's Virtual Path / Plugins / Plugin A is.

In development, a plugin is a separate asp.net mvc web application. To make plugin development easier, I prepare plugin projects in the same solution, where the main project is inside. At runtime, the stage will load the assemblies in the bin folder of the plugin project dynamically.

The problem is, Every time I debug the main project, Visual Studio will launch many web development servers (for a main project, and for each plugin project for).

So if I have 20 plugins, Visual Studio 21 development server will start it makes my computer slow so, if there is a way to disable the development server for plugin projects, then what is the reason for debugging? Should only Visual Studio start a development server?

BTW: I still need intellisence for the view of the razor in the plugin projects.

Click on the web project that you do not want to launch, to bring the Web Dev Server, Properties tab Press F4, and you'll find the option "Start always debugging", which you have to set to false.

Comments