XmlDoc2CmdletDoc 0.2.13

There is a newer version of this package available.
See the version list below for details.
dotnet add package XmlDoc2CmdletDoc --version 0.2.13
NuGet\Install-Package XmlDoc2CmdletDoc -Version 0.2.13
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="XmlDoc2CmdletDoc" Version="0.2.13">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add XmlDoc2CmdletDoc --version 0.2.13
#r "nuget: XmlDoc2CmdletDoc, 0.2.13"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install XmlDoc2CmdletDoc as a Cake Addin
#addin nuget:?package=XmlDoc2CmdletDoc&version=0.2.13

// Install XmlDoc2CmdletDoc as a Cake Tool
#tool nuget:?package=XmlDoc2CmdletDoc&version=0.2.13

Tool used to generate .dll-Help.xml help files for binary PowerShell modules from XML Doc comments. Licensed under the terms of the new 3-clause BSD license.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (9)

Showing the top 5 popular GitHub repositories that depend on XmlDoc2CmdletDoc:

Repository Stars
googleprojectzero/sandbox-attacksurface-analysis-tools
Set of tools to analyze Windows sandboxes for exposed attack surface.
microsoft/Intune-PowerShell-SDK
Native PowerShell support for invoking Microsoft Intune Graph API to enable IT Pro scenario automation.
lordmilko/PrtgAPI
C#/PowerShell interface for PRTG Network Monitor
x41sec/browser-security-whitepaper-2017
X41 Browser Security White Paper - Tools and PoCs
neos-sdi/adfsmfa
MFA for ADFS 2022/2019/2016/2012r2
Version Downloads Last updated
0.4.0-dotnetcore0001 5,876 7/14/2020
0.4.0-dotnetcore0000 1,242 7/8/2020
0.3.0 80,603 7/8/2020
0.2.13 33,128 8/5/2019
0.2.12 17,915 3/5/2019
0.2.11 1,016 3/5/2019
0.2.10 35,187 1/9/2018
0.2.9 14,690 9/22/2017
0.2.8 1,400 9/11/2017
0.2.7 13,644 2/3/2017
0.2.6 1,463 1/16/2017
0.2.5 1,750 11/19/2016
0.2.4 3,909 7/16/2016
0.2.3 6,287 4/29/2016
0.2.2 1,443 4/27/2016
0.2.1 1,292 4/14/2016
0.2.0 1,405 4/12/2016

# 0.2.13

- Correctly resolve type descriptions for array-typed parameters.

# 0.2.12

- Extended the support for documenting parameters of type `Enum` to include parameters of type `IEnumerable<T> where T : Enum`.

# 0.2.11

- Added support for dynamic parameters.

# 0.2.10

- Parameters marked with the [Obsolete] attribute no longer appear in the cmdlet syntax summary, though it's still possible to provide help text for the parameter, which can be viewed using the `-Parameter` switch of the `Get-Help` cmdlet.

- Added support for excluding parameter sets by name, via a new command-line option and corresponding msbuild property.

# 0.2.9

- Fixed issue #39. Corrected a regression for the default value of string parameters.

# 0.2.8

- Partially addressed issues #33 and #37. Slightly improved handling of default values and array parameters. More work is required in this area, though.

# 0.2.7

- Fixed issue #31. MSBuild task now accommodates binary modules that are specifically targeted at only x86 or x64 architectures.

# 0.2.6

- Fixed issue #28. Ensure that help syntax is correctly displayed for parameterless cmdlets.

# 0.2.5

- Added limited support for documenting dynamic parameters. If a cmdlet implements IDynamicParameters, and its GetDynamicParameters method returns an instance of a nested type within the cmdlet, then help documentation will be extracted from the nested type's XML Doc comments.

# 0.2.4

- Fixed issue #22. When encountering a Parameter with no getter, XmlDoc2CmdletDoc now records a warning that the default value for the Parameter cannot be obtained. Previously this raised a fatal exception.

# 0.2.3

- XmlDoc2CmdletDoc now executes prior to the AfterBuild target, rather than prior to the PostBuildEvent target, to give developers the option to copy files around in either target, rather than only in the latter.

# 0.2.2

- Fixed issue #19: Help for cmdlet parameters is now explicitly ordered by Position, then Required, then Name, rather than relying on the arbitrary order of Type.GetMembers.

# 0.2.1

- First public release.