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.
This commit is contained in:
Zlatko Knezevic 2015-12-02 10:26:10 -08:00
parent f67a247252
commit 5bd2984fbc

View file

@ -22,9 +22,12 @@ Common Options (passed before the command):
-v|--verbose Enable verbose output -v|--verbose Enable verbose output
Common Commands: Common Commands:
init Initialize a basic .NET project
restore Restore dependencies specified in the .NET project
compile Compiles a .NET project compile Compiles a .NET project
publish Publishes a .NET project for deployment publish Publishes a .NET project for deployment (including the runtime)
run Compiles and immediately executes a .NET project"; run Compiles and immediately executes a .NET project
pack Package a NuGet package of the application";
public static int Main(string[] args) public static int Main(string[] args)
{ {