using System; using System.Collections.Generic; using System.Threading.Tasks; namespace nuget_cli { partial class Program { private static void SourceList(IEnumerable sargs) { throw new NotImplementedException(); } private static object SourceAdd(IEnumerable str) { throw new NotImplementedException(); } private static object Add(IEnumerable str) { throw new NotImplementedException(); } private static async Task> PushPkgAsync(IEnumerable pkgs) { List pushReports = new List(); foreach (string pkg in pkgs) { var report = await PushCommand.RunAsync(pkg,source,apiKey); pushReports.Add(report); } return pushReports; } private static object StoreApiKey(IEnumerable str) { throw new NotImplementedException(); } private static string LocalizeThis(string arg) { return arg; } } }