Suppress XML file generation for third-party DLLs when building a solution

Ok, I decided how to disable the generation of XML files for my own project (Compile -> Generate XML documentation file). There are also some third-party DLL files with Copy Local = True that I need to deploy XCopy. Each of them creates its own XML in the assembly folder. Is there a way to suppress XML file generation for third-party DLLs? I am using Visual Studio 2010. Thank you.

+4
source share
1 answer

XML documentation will not be created for the DLL files associated with the files. If the output folder contains an XML documentation file for your third-party DLL (somehow), then deleting it should be deleted permanently.

See this question for an overview of links in Visual Studio projects.

0
source

Source: https://habr.com/ru/post/1383511/


All Articles