This commit is contained in:
Paul Schneider
2021-05-10 21:36:08 +01:00
parent 3086cc65c4
commit 36e1137e50
3 changed files with 21 additions and 2 deletions

View File

@ -21,9 +21,12 @@ namespace nuget_cli
throw new NotImplementedException();
}
private static object PushPkg(IEnumerable<string> pkg)
private static object PushPkg(IEnumerable<string> pkgs)
{
throw new NotImplementedException();
foreach (string pkg in pkgs)
{
}
}
private static object StoreApiKey(IEnumerable<string> str)