Reputation: 2001
When using Visual Studio 2015, “Apply Code Changes” is always disabled. I've seen MANY posts regarding this, but I haven't found a solution.
Here are some details:
This was working with this project. I think it stopped working when I changed to the VS 2015 IDE (as noted above, I still compile it using the 2010 compiler).
Thanks!
Upvotes: 1
Views: 1626
Reputation: 461
The default debugger does not support Edit and Continue with v100 toolset.
Here's a workaround to get Native ENC working with older toolsets (eg. v100):
Add C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ (or corresponding path for a custom VS2010 install) to your VS environment PATH variable. You can add this through:
SET PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\
and call devenv.Upvotes: 1