Search code examples
c#visual-studioblazor.net-6.0visual-studio-debugging

Is it possible to exclude certain projects in a solution from hot reload in visual studio?


Currently our hot reload takes a looong time (over 20 seconds). This is because its tracking changes over 50+ class libraries (I think), while we really only change 1 project.

Is it possible to somehow exclude these projects from hot reload to make it perform faster? On new projects it's so unbelievably fast.

The only solution I've found is to disable hot reload in launchSettings.json which would turn the feature off.


Solution

  • The answer is NO.

    Everything about hot reload feature of VS tool is here:

    Hot Reload in Visual Studio

    No such sub feature you want.