Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I stop Visual Studio from creating XML Documentation files in a Release build?

When i build my application in Release mode i get the folder flooded with .xml files, Is there anyway to stop that ?

like image 572
Daniel Eugen Avatar asked Jul 23 '14 19:07

Daniel Eugen


1 Answers

If it's a VB.Net project, there's a checkbox under Project Settings -> Compile called "Generate XML documentation file". If it's a C# project it's under Project Settings -> Build XML documentation file, where you specify your own path.

Keep in mind that intellisense uses those to give you the summary, paramref, and other hints that you've put as xml docs over your function.

like image 97
George Popov Avatar answered Oct 10 '22 12:10

George Popov