Adding the projectmodel-server command back to the list of built-in commands.
This commit is contained in:
parent
55c57608f8
commit
72a053fa0e
1 changed files with 3 additions and 1 deletions
|
@ -10,6 +10,7 @@ using System.Text;
|
|||
using Microsoft.DotNet.Cli.Utils;
|
||||
using Microsoft.DotNet.Configurer;
|
||||
using Microsoft.DotNet.PlatformAbstractions;
|
||||
using Microsoft.DotNet.ProjectModel.Server;
|
||||
using Microsoft.DotNet.Tools.Build;
|
||||
using Microsoft.DotNet.Tools.Compiler;
|
||||
using Microsoft.DotNet.Tools.Compiler.Csc;
|
||||
|
@ -45,7 +46,8 @@ namespace Microsoft.DotNet.Cli
|
|||
["run3"] = Run3Command.Run,
|
||||
["restore3"] = Restore3Command.Run,
|
||||
["pack3"] = Pack3Command.Run,
|
||||
["migrate"] = MigrateCommand.Run
|
||||
["migrate"] = MigrateCommand.Run,
|
||||
["projectmodel-server"] = ProjectModelServerCommand.Run,
|
||||
};
|
||||
|
||||
public static int Main(string[] args)
|
||||
|
|
Loading…
Reference in a new issue