I have a C# dll project in Visual Studio 2008. In the project property pages, on the Build tab, the checkbox 'XML Documentation File' is checked. The path is 'bin\Debug\Fusion.BusinessObjects.XML' However, when building the solution, no xml files is created.
I have referenced this dll in a number of other projects, and one had a copy of the XML documentation file. This however only contained:
<?xml version="1.0"?>
<doc>
<assembly>
<name>Fusion.BusinessObjects</name>
</assembly>
<members>
</members>
</doc>
Why is the documentation file not generated? Needles to say, the code is documentented with comments like
/// <summary>
/// Helper class to construct a EntityCollection
/// </summary>