Add dotnet publish3 command.

This commit is contained in:
Eric Erhardt 2016-09-23 11:11:44 -05:00
parent d4f6144355
commit eed29be806
8 changed files with 213 additions and 1 deletions

View file

@ -21,6 +21,7 @@ using Microsoft.DotNet.Tools.New;
using Microsoft.DotNet.Tools.NuGet;
using Microsoft.DotNet.Tools.Pack3;
using Microsoft.DotNet.Tools.Publish;
using Microsoft.DotNet.Tools.Publish3;
using Microsoft.DotNet.Tools.Restore;
using Microsoft.DotNet.Tools.Restore3;
using Microsoft.DotNet.Tools.Run;
@ -48,6 +49,7 @@ namespace Microsoft.DotNet.Cli
["msbuild"] = MSBuildCommand.Run,
["run3"] = Run3Command.Run,
["restore3"] = Restore3Command.Run,
["publish3"] = Publish3Command.Run,
["vstest"] = VSTestCommand.Run,
["pack3"] = Pack3Command.Run,
["migrate"] = MigrateCommand.Run,