39 lines
880 B
C#
39 lines
880 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|