How do I enable file editing in Visual Studio's debug mode?

前端 未结 11 766
抹茶落季
抹茶落季 2020-12-07 16:12

Is there a way to enable file editing while debugging in Visual Studio? I have unchecked the \"Require the source file to exactly match the original version\" checkbox. It m

11条回答
  •  醉酒成梦
    2020-12-07 16:37

    If you have Edit and Continue turned on and you are using C# you can only edit a file if the debugger has stopped either via a break point or you manually breaking into the App via "Break All". You still won't be able to edit some files, Ex. xaml files in a WPF app, but it should solve most problems.

提交回复
热议问题