From 1af5dc236f64c087763d9780354dea63c67e3bda Mon Sep 17 00:00:00 2001 From: Ravi Mandal Date: Mon, 3 Apr 2017 23:18:12 +0545 Subject: [PATCH] minor changes in numbering in Adding a command section --- Documentation/project-docs/developer-guide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/project-docs/developer-guide.md b/Documentation/project-docs/developer-guide.md index 28b37d7fa..64b8dc091 100644 --- a/Documentation/project-docs/developer-guide.md +++ b/Documentation/project-docs/developer-guide.md @@ -44,10 +44,10 @@ Using the `dotnet` built in the previous step: The dotnet CLI supports several models for adding new commands: -0. In the CLI itself via `dotnet.dll` -1. Through a `tool` NuGet package -2. Through MSBuild tasks & targets in a NuGet package -3. Via the user's `PATH` +1. In the CLI itself via `dotnet.dll` +2. Through a `tool` NuGet package +3. Through MSBuild tasks & targets in a NuGet package +4. Via the user's `PATH` ### Commands in dotnet.dll Developers are generally encouraged to avoid adding commands to `dotnet.dll` or the CLI installer directly. This is appropriate for very general commands such as restore, build, publish, test, and clean, but is generally too broad of a distribution mechanism for new commands. Please create an issue and engage the team if you feel there is a missing core command that you would like to add.