SvRooij.PowerShell.Docs
0.1.1
dotnet tool install --global SvRooij.PowerShell.Docs --version 0.1.1
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local SvRooij.PowerShell.Docs --version 0.1.1
#tool dotnet:?package=SvRooij.PowerShell.Docs&version=0.1.1
nuke :add-package SvRooij.PowerShell.Docs --version 0.1.1
PowerShell.Docs by Stephan van Rooij
You can use this library to document your binary PowerShell modules. As a C# developer you can just document the library with XML comments in your code and this tool will generate the maml file and or markdown files for you.
Installation
This tool is distributed as a dotnet tool. You can install it by running the following command:
dotnet tool install -g SvRooij.PowerShell.Docs
Usage
You can use this tool by running the following command:
pwsh-docs --dll "path\to\your\module.dll" --use-xml-docs --md-output "path\to\output" --maml-file "path\to\YourModule.xml"
Arguments
Argument | Description |
---|---|
--dll "{path-here}" |
The path to the dll file of your module. |
--use-xml-docs |
Use this flag to read the xml file (did you enable this?) |
--md-output "{path-here}" |
The path to the output directory for the markdown files. |
--maml-file "{path-here}" |
The path to the maml file. |
Outputs
The tool will generate markdown files and or a maml file, depending on the arguments you provide.
Markdown files
The markdown files are generated in the following structure, using this template:
# {CommandName}
{CommandSynopsis}
{CommandDescription}
## Syntax
{Each parameter set..}
{Complete syntax}
{Markdown table with parameters}
{Each parameter set..}
{Each example..}
{Example description}
{Example code block}
{Each example..}
MAML file
If the --maml-file
argument is provided, the tool will generate a maml file, which is a file used by the PowerShell help system.
XML comments
To generate the documentation, you may provide XML comments in your C# code. The better you document here, the better the output will be. The tool should also work without XML comments, but the output will be less detailed, and you'll be missing out on some features.
Here is an example of which xml comments you can use, from Connect-WtWinTuner command:
/// <summary>
/// <para type="synopsis">Connect to Intune</para>
/// <para type="description">A separate command to select the correct authentication provider, you no longer have to provide the auth parameters with each command.</para>
/// </summary>
/// <psOrder>3</psOrder>
/// <parameterSet>
/// <para type="name">Interactive</para>
/// <para type="description">If you're running WinTuner on your local machine, you can use the interactive browser login. This will integrate with the native browser based login screen on Windows and with the default browser on other platforms.</para>
/// </parameterSet>
/// <parameterSet>
/// <para type="name">UseManagedIdentity</para>
/// <para type="description">WinTuner supports Managed Identity authentication, this is the recommended way if you run WinTuner in the Azure Environment.</para>
/// </parameterSet>
/// <example>
/// <para type="name">Connect using interactive authentication</para>
/// <para type="description">This will trigger a login broker popup (Windows Hello) on Windows and the default browser on other platforms</para>
/// <code>Connect-WtWinTuner -Username "youruser@contoso.com"</code>
/// </example>
[Cmdlet(VerbsCommunications.Connect, "WtWinTuner", DefaultParameterSetName = ParamSetInteractive, HelpUri = "https://wintuner.app/docs/wintuner-powershell/Connect-WtWinTuner")]
[Alias("Connect-WinTuner")]
public class ConnectWtWinTuner : PSCmdlet
{
...
}
Summary
Each command should have a <summary>
tag with a <para type="synopsis">
and <para type="description">
tag. The synopsis is a short description of what the command does, the description is a more detailed explanation.
Order
The <psOrder>
tag is used to order the commands in the markdown files. This is also outputted in the markdown in the header as sidebar_position
. Completely optional.
Parameter sets
You either specify a <parameterSet>
tag for each parameter set, with a <para type="name">
and <para type="description">
tag. The name is the name of the parameter set, the description is a short explanation of what the parameter set does.
If you don't specify any parameter sets, the tool will generate them for you based on the parameters of the command, but you cannot control the order in the markdown files or the description.
Examples
You may provide one or more samples in the <example>
tag. Each example may have a <para type="name">
and <para type="description">
tag. The name is the name of the example (will generate example {number} otherwise), the description is a short explanation of what the example does. Each example should have a <code>
tag with the example code.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.