Visual Studio (2008) does not create xml documentation

I have a C # dll project in Visual Studio 2008. The XML Documentation File check box is checked on the project properties pages on the Assembly tab. Path: "bin \ Debug \ Fusion.BusinessObjects.XML". However, when creating a solution, xml files are not created.

I referenced this DLL in a number of other projects, and you had a copy of the XML documentation file. This, however, 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 documented with comments like

/// <summary>
/// Helper class to construct a EntityCollection
/// </summary>
+3
source share
3 answers

This happened to me once, and I fixed the problem by re-creating the project file from scratch and starting with a clean folder structure.

+2

, Debug? Release. , Release , .

+1

The XML Documentation File parameter can have different values ​​for different build configurations (debug / release). Is it possible that you configured it for debugging (for example), but you are building the release (or vice versa) ..?

+1
source

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


All Articles