Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 200 Bytes

CustomCli.md

File metadata and controls

13 lines (10 loc) · 200 Bytes

Custom CLI

Execute a tool from a NuGet package

[PathExecutable] readonly Nuke.Common.Tooling.Tool Echo;

Target Foo => _ => _
  .Executes(() =>
  {
    Echo("arguments");
  });