Programming Tips - Warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH' specification

Date: 2023jul17 Product: VS2017, Microsoft Visual Studio Keywords: SEH Q. Warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH' specification A. Right click on the project and change
Configuration Properties > C/C++ > General > Debug Information Format
to
Program Database (/Zi)
For a lot of files, in your .vcxproj files change:
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
to
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>