Reputation: 4271
How to enable native Edit & Continue in VS 2015 after upgrade (or a clean installation)?
Upvotes: 4
Views: 4967
Reputation: 104
I believe it may be connected with default linker options that are not compatible with EnC. You can find some helpful information in this answer How to ensure that the /EDITANDCONTINUE directive is not ignored
Upvotes: 1
Reputation: 2215
The Edit & Continue option has been moved to Tools==> Option==> Debugging. Below is the screenshot,
Upvotes: 2
Reputation: 4271
With a clean installation the Edit and Continue should be enabled by default.
If you have upgraded from a previous version, you will need to set all three of the following in your projects Property Page:
- Under C/C++ -> General, set the "Debug Information Format" to “Program Database for Edit and Continue (/ZI)”
- Under the Linker -> General, set "Enable Incremental Linking" to “Yes (/INCREMENTAL)”.
- Under Debug -> General, (under the "Enable Edit and Continue”) enable the "Native Edit and Continue"
Upvotes: 1