From 5bd2984fbc796426a215e7a6bb7cf80f55d4200b Mon Sep 17 00:00:00 2001 From: Zlatko Knezevic Date: Wed, 2 Dec 2015 10:26:10 -0800 Subject: [PATCH] Add rest of the command to the driver Currently, the driver just shows information about compile, publish and run. Add info for init, pack and restore as well. --- src/Microsoft.DotNet.Cli/Program.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.DotNet.Cli/Program.cs b/src/Microsoft.DotNet.Cli/Program.cs index 63b751716..b9e9c9fd3 100644 --- a/src/Microsoft.DotNet.Cli/Program.cs +++ b/src/Microsoft.DotNet.Cli/Program.cs @@ -22,9 +22,12 @@ Common Options (passed before the command): -v|--verbose Enable verbose output Common Commands: + init Initialize a basic .NET project + restore Restore dependencies specified in the .NET project compile Compiles a .NET project - publish Publishes a .NET project for deployment - run Compiles and immediately executes a .NET project"; + publish Publishes a .NET project for deployment (including the runtime) + run Compiles and immediately executes a .NET project + pack Package a NuGet package of the application"; public static int Main(string[] args) {