clean
This commit is contained in:
parent
4cec5d0229
commit
3086cc65c4
6 changed files with 208 additions and 0 deletions
39
src/nuget-cli/Program.Commands.cs
Normal file
39
src/nuget-cli/Program.Commands.cs
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue