This doesn't quite answer the OP question as such, but for those who stumbled upon this page in the same (very frustrated) boat as me, this might help.
Solution: start without debugging .
It drove me crazy that Visual Studio did not allow me to edit files while the application was running. My typical workflow:
- Make some changes.
- Launch the app to see the effects of these changes.
- Based on the results, make more changes, etc. etc.
The problem is that Visual Studio is stopping me from step 3. It requires you to start the STOP application before you can even make any changes (including to the XAML file or adding the file to the project), which also means that you cannot return to the application to double check something while you actually program it (which I am working on, br).
Thank goodness I finally found that if I run without debugging, this does not impose this ridiculous restriction. This is still a pain in the butt, if you really need to debug something you need to restart the application in debug mode, but it is sure that you need to kill the application before it even allows you to edit the file.
devios1
source share