2using System.Collections.Generic;
4using System.Threading.Tasks;
6using Nuke.Common.Tooling;
12 public static ValueOrError<ToolEx> EnsurePython =>
ToolCola.
Use(
"py");
13 public static ToolEx Python => EnsurePython.Get();
15 public static ValueOrError<ToolEx> EnsurePip =>
ToolCola.
Use(
"pip");
16 public static ToolEx Pip => EnsurePip.Get();