I'm writing a small analyzer for C# projects that checks if the XML documentation generation is present and set up correctly. There are two options for to specify XML documentation:
- An older
DocumentationFileoption - A newer
GenerateDocumentationFileflag. If the flag is set to true MSBuild should generate a XML documentation file with the project's name in the project's output directory.
Can both of these options be specified explicitly in the project file? Will the values from these options be combined or one of the options will be ignored?