I know the question does not make complete sense, as I'm not building inside of Visual Studio. I'm trying to submit my binary for a static analysis by Veracode, and I build using msbuild
:
msbuild coop.sln /p:Configuration=Debug /p:Platform=x64 /p:LinkIncremental=false
I can turn this off in my Visual Studio environment by going to Tools > Options > Debugging > Edit and Continue, and then unchecking the 'Enabled Edit and Continue.' However, this doesn't seem to affect the solution file.
I get a warning from Veracode about having used Edit & Continue when I upload the resulting binary. I feel like there must be an option to disable that configuration through msbuild
.
A couple of related posts that do not completely address this:
- How to: Enable and Disable Edit and Continue
- Is there a way to completely disable Edit and Continue?
Any ideas for how to disable Edit and Continue through msbuild
?