I am developing a basic asp.net web application in Visual Studio 2015 3 update.
Every time I have to check for updates in the browser, I must either F5, that the application takes time, or if I run "start without debugging", I get a build error due to the inability to access the "aspnet kernel dll assembler", which used by some process.
In an asp.net mvc application, I can just create the application and then check the browser without having F5 or Ctrl F5, which takes time.
Is there any way to make changes to the code, and then just create an application and check the browser, and not work in debug mode?
source
share