public static void DNUPack(this ICakeContext context, string path, DNUPackSettings settings) { if (context == null) { throw new ArgumentNullException("context"); } if (settings == null) { settings = new DNUPackSettings(); } var restorer = new DNUPacker(context.FileSystem, context.Environment, context.ProcessRunner, context.Tools); restorer.Pack(path, settings); }
protected override void RunTool() { var tool = new DNUPacker(FileSystem, Environment, ProcessRunner, Tools); tool.Pack(Path, Settings); }