module/src/GetDotnetTestCmdlet.cs
using System.Management.Automation;
namespace Cbsch.PSlib { [Cmdlet("Get", "DotnetTest")] public class GetDotnetTestCmdlet : PSCmdlet { protected override void BeginProcessing() { WriteObject("Get-DotnetTest"); } } } |