Any way to run a .net network application without debugging mode?

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?

+4
source share
2 answers

Microsoft has created a watch tool, which you can add to your own project.json, which allows you to run internal code in watch mode ...

  • Add Microsoft.DotNet.Watcher.Toolsto the toolsfile section project.json.
  • Run it dotnet restore.
  • Starting from dotnet watch run
  • Check the link above for more details.

Then for your interface code you can do as Michel Amoros suggested

+2
source

Gulp , - :

+1

Source: https://habr.com/ru/post/1668586/


All Articles