dotnet-migrate built in command for cli

This commit is contained in:
Bryan Thornbury 2016-08-22 12:21:52 -07:00
parent 46818ff3fa
commit 611e4ccfde
8 changed files with 311 additions and 1 deletions

View file

@ -21,6 +21,7 @@ using Microsoft.DotNet.Tools.Restore;
using Microsoft.DotNet.Tools.Restore3;
using Microsoft.DotNet.Tools.Run;
using Microsoft.DotNet.Tools.Test;
using Microsoft.DotNet.Tools.Migrate;
using NuGet.Frameworks;
namespace Microsoft.DotNet.Cli
@ -42,6 +43,7 @@ namespace Microsoft.DotNet.Cli
["run3"] = Run3Command.Run,
["restore3"] = Restore3Command.Run,
["pack3"] = Pack3Command.Run,
["migrate"] = MigrateCommand.Run
};
public static int Main(string[] args)