Merge pull request #536 from enricosada/patch-1

Thanks @enricosada!
This commit is contained in:
Piotr Puszkiewicz 2015-12-22 12:03:25 -08:00
commit 12351cd37b

View file

@ -37,7 +37,7 @@ In order to build .NET Command Line Interface, you need the following installed
##Adding a Command
The donet CLI considers any executable on the path named `dotnet-{commandName}` to be a command it can call out to. `dotnet publish`, for example, is added to the path as an executable called `dotnet-publish`. To add a new command we must create the executable and then add it to the distribution packages for installation.
The dotnet CLI considers any executable on the path named `dotnet-{commandName}` to be a command it can call out to. `dotnet publish`, for example, is added to the path as an executable called `dotnet-publish`. To add a new command we must create the executable and then add it to the distribution packages for installation.
0. Create an issue on https://github.com/dotnet/cli and get consensus on the need for and behavior of the command.
1. Add a new project for the command.