added pack3 command for dotnet (#4058)

This commit is contained in:
Rohit Agrawal 2016-08-18 16:53:55 -07:00 committed by GitHub
parent 5de388118d
commit e08da40a1f
2 changed files with 89 additions and 0 deletions

View file

@ -15,6 +15,7 @@ using Microsoft.DotNet.Tools.Compiler;
using Microsoft.DotNet.Tools.Compiler.Csc;
using Microsoft.DotNet.Tools.Help;
using Microsoft.DotNet.Tools.New;
using Microsoft.DotNet.Tools.Pack3;
using Microsoft.DotNet.Tools.Publish;
using Microsoft.DotNet.Tools.Restore;
using Microsoft.DotNet.Tools.Restore3;
@ -40,6 +41,7 @@ namespace Microsoft.DotNet.Cli
["build3"] = Build3Command.Run,
["run3"] = Run3Command.Run,
["restore3"] = Restore3Command.Run,
["pack3"] = Pack3Command.Run,
};
public static int Main(string[] args)