Skip to content

Commit cbc66d4

Browse files
committed
Configure solution to auto-generate XML documentation
We are diligent about maintaining XML Docs for all types and members. But we don't currently _do_ anything with that documentation. By auto-generating it on compilation, we at least ensure that it will end up being included in NuGet packages—and thus available to IntelliSense for implementers. In addition, this will allow us to use e.g. DocFX in the future as part of our CI/CD process, should we choose. As part of this, accept the default XML output path. This is the same as the one we have configured, and there's no real benefit to being explicit in this case.
1 parent 6492aab commit cbc66d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OnTopic.Data.Transfer/OnTopic.Data.Transfer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<Description>Libraries for supporting the import and export of OnTopic entities.</Description>
1717
<PackageTags>C# .NET CMS DTO</PackageTags>
1818
<Copyright>©2021 Ignia, LLC</Copyright>
19-
<OutputPath>bin\$(Configuration)\</OutputPath>
2019
<Authors>Ignia</Authors>
2120
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2221
<UseFullSemVerForNuGet>true</UseFullSemVerForNuGet>
2322
<NeutralLanguage>en</NeutralLanguage>
2423
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2524
<IncludeSymbols>true</IncludeSymbols>
25+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2626
<PackageIcon>Icon.png</PackageIcon>
2727
</PropertyGroup>
2828

0 commit comments

Comments
 (0)