The <inheritdoc/> XML comments tag allows documentation to be inherited from
base types/members, which reduces the effort required to write documentation.
However, some tools don't support this feature. InheritdocInliner is a
command-line tool that postprocesses XML files and replaces <inheritdoc/>
elements with actual comments.
Install the NuGet package or download the latest EXE from GitHub.
path\to\InheritdocInliner.exe path\to\docs.xml
Command line arguments:
| Argument | Description |
|---|---|
| --help | Display the help screen. |
| --version | Display version information. |
| -x, --xml (pos. 0) | The XML document to be processed. |
| -d, --dll (pos. 1) | The assembly file for which the XML document is processed. If not specified, the path of the XML document will be used. |
| -o, --output (pos. 2) | The path of the output XML document. If not specified, the original document will be overwritten. |