From e440f282aeedf208ed11614c2f984e5844d3b45e Mon Sep 17 00:00:00 2001 From: James Ko Date: Sun, 20 Mar 2016 10:06:08 -0400 Subject: [PATCH] Fix the project.json indentation in Using Commands --- aspnet/dnx/commands.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/aspnet/dnx/commands.rst b/aspnet/dnx/commands.rst index f1cbac0c7d..d19a26ec91 100644 --- a/aspnet/dnx/commands.rst +++ b/aspnet/dnx/commands.rst @@ -16,9 +16,9 @@ In the ``commands`` section of the below *project.json* example, four commands a .. code-block:: json { - "webroot": "wwwroot", - "version": "1.0.0-*", - + "webroot": "wwwroot", + "version": "1.0.0-*", + "dependencies": { "Kestrel": "1.0.0-beta7", "Microsoft.AspNet.Diagnostics": "1.0.0-beta7", @@ -28,10 +28,10 @@ In the ``commands`` section of the below *project.json* example, four commands a "Microsoft.AspNet.StaticFiles": "1.0.0-beta7" }, "commands": { - "web": "Microsoft.AspNet.Hosting --config hosting.ini", - "kestrel": "Microsoft.AspNet.Hosting --config hosting.ini", - "gen": "Microsoft.Framework.CodeGeneration", - "ef": "EntityFramework.Commands" + "web": "Microsoft.AspNet.Hosting --config hosting.ini", + "kestrel": "Microsoft.AspNet.Hosting --config hosting.ini", + "gen": "Microsoft.Framework.CodeGeneration", + "ef": "EntityFramework.Commands" }, "frameworks": { "dnx451": { },