我正在使用 C# 中的 PSCmdlet 类编写 PowerShell Cmdlet。
[Cmdlet(VerbsCommon.Get, "Employee")]
public class GetEmployee : PSCmdlet
我想在 Get-Help Get-Employee 的 Remarks, Description, Synopsis 部分提供更多信息
任何人都知道如何添加/填充这些部分?
我正在使用 C# 中的 PSCmdlet 类编写 PowerShell Cmdlet。
[Cmdlet(VerbsCommon.Get, "Employee")]
public class GetEmployee : PSCmdlet
我想在 Get-Help Get-Employee 的 Remarks, Description, Synopsis 部分提供更多信息
任何人都知道如何添加/填充这些部分?
/// <summary>
/// <para type="synopsis">This is the cmdlet synopsis.</para>
/// <para type="description">This is part of the longer cmdlet description.</para>
/// <para type="description">Also part of the longer cmdlet description.</para>
/// </summary>
[Cmdlet(VerbsCommon.Get, "Employee")]
public class GetEmployee : PSCmdlet
有关更详细的示例,请参阅此处的此博客文章。