isn/src/nuget-cli/Program.Commands.cs

42 lines
918 B
C#
Raw Normal View History

2021-05-10 21:32:29 +01:00
using System;
using System.Collections.Generic;
namespace nuget_cli
{
partial class Program
{
private static void SourceList(IEnumerable<string> sargs)
{
throw new NotImplementedException();
}
private static object SourceAdd(IEnumerable<string> str)
{
throw new NotImplementedException();
}
private static object Add(IEnumerable<string> str)
{
throw new NotImplementedException();
}
2021-05-10 21:36:08 +01:00
private static object PushPkg(IEnumerable<string> pkgs)
2021-05-10 21:32:29 +01:00
{
2021-05-10 21:36:08 +01:00
foreach (string pkg in pkgs)
{
}
2021-05-10 21:32:29 +01:00
}
private static object StoreApiKey(IEnumerable<string> str)
{
throw new NotImplementedException();
}
private static string LocalizeThis(string arg)
{
return arg;
}
}
}