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