Creating and removing files in Visual Studio while "debugging"

0

I can not create or remove files while my .NET project is running, I have already tried to enable / disable various Visual Studio options but I have not found what is blocking this edition.

I do not need the debug to "recompile" the files in runtime, I just need to release the option to create new files while the application is running, such as views, css, etc.

Note:Icannotcreate"View" files.

    
asked by anonymous 06.09.2016 / 15:49

1 answer

0

You can do this, but it's not that way in VS2015. Try:

  • Run the project, but overruns the debug mode (CTRL + F5). The debug mode needs to be recompiled to process the modified files.
  • Install dnx-watch using this command: dnu commands install Microsoft.Dnx.Watcher . You can read more about this here (site me).
  • (source: link )

        
    06.09.2016 / 16:20