↧
Answer by stijn for How to set SAFESEH linker option using MSBuild command line
/SAFESEH:NO shown in the project settings is very different from passing an msbuild property named SAFESEH and set it to "NO": /SAFESEH is a linker command line option and there is no direct relation...
View ArticleHow to set SAFESEH linker option using MSBuild command line
I am trying to build my C++ project created in VS2008 and upgraded to VS2013 using MSBuild. I am referencing 3 third party dlls. In the project settings I'm using /SAFESEH:NO. With this setting when I...
View Article