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

39 lines
880 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();
}
private static object PushPkg(IEnumerable<string> pkg)
{
throw new NotImplementedException();
}
private static object StoreApiKey(IEnumerable<string> str)
{
throw new NotImplementedException();
}
private static string LocalizeThis(string arg)
{
return arg;
}
}
}