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.
精彩评论