开发者

Don't allow visual studio to create debug info

开发者 https://www.devze.com 2023-03-16 10:33 出处:网络
How开发者_JS百科 can I tell visual studio 2008 to include a library for compilation, but to not create debug info for that specific library? Since I am creating debug info for the project in general,

How开发者_JS百科 can I tell visual studio 2008 to include a library for compilation, but to not create debug info for that specific library? Since I am creating debug info for the project in general, I guess it assumes you want debug info for all included libraries, but I do not want it to do this. Note: I do not have access to the project from which this library came from, so I cannot simply tell its project to not generate debug info. Any help is appreciated!


Debug info will be created when a project is compiled in DEBUG mode. Third party assemblies are not compiled again.

VS won't create debug info for referenced assemblies. If you do not have the source code for that library as a project reference, debug info will not be created.

0

精彩评论

暂无评论...
验证码 换一张
取 消