From 98a55251e7b3147950ddfd964d5fd8d14717f42c Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Mon, 20 Mar 2017 16:13:45 -0400 Subject: [PATCH] Fix markdown headings to work with github's new rendering Recent changes to github now require a space after '#' for headings in markdown documents to work correctly. See: https://github.github.com/gfm/#atx-headings --- Documentation/project-docs/developer-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/project-docs/developer-guide.md b/Documentation/project-docs/developer-guide.md index 775a43641..a9fae98c0 100644 --- a/Documentation/project-docs/developer-guide.md +++ b/Documentation/project-docs/developer-guide.md @@ -44,7 +44,7 @@ Using the `dotnet` built in the previous step: 1. To run all tests invoke `build.cmd` or `build.sh` which will build the product and run the tests. 2. To run a specific test, cd into that test's directory and execute `dotnet test`. If using this approach, make sure to add `artifacts/{RID}/stage2` to your `PATH` and set the `NUGET_PACKAGES` environment variable to point to the repo's `.nuget/packages` directory. -##Adding a Command +## Adding a Command The dotnet CLI supports several models for adding new commands: