我正在c#中编写一个PowerShell模块,它由一堆PowerShell cmdlet组成。
例如:
获取的应用程序
当我宣布课程
时[Cmdlet(VerbsCommon.Get, "Application")]
public class GetApplication : PSCmdlet
我可以为此cmdlet提供参数以及有关参数本身的有用消息。
我正在尝试在我的课程中提供更多文档,以便像
这样的命令get-help get-application
将在REMARKS部分中提供有关cmdlet本身的说明。
我知道如何在visual studio 2013中添加它?