summaryrefslogtreecommitdiff
path: root/Documentation/building/windows-instructions.md
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/building/windows-instructions.md')
-rw-r--r--Documentation/building/windows-instructions.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/building/windows-instructions.md b/Documentation/building/windows-instructions.md
index 4122711174..a5ce25780c 100644
--- a/Documentation/building/windows-instructions.md
+++ b/Documentation/building/windows-instructions.md
@@ -91,7 +91,7 @@ Powershell version must be 3.0 or higher. This should be the case for Windows 8
- Windows 7 SP1 can install Powershell version 4 [here](https://www.microsoft.com/en-us/download/details.aspx?id=40855).
## DotNet Core SDK
-While not strictly needed to build or tests the .NET Core repository, having the .NET Core SDK installed lets
+While not strictly needed to build or test the .NET Core repository, having the .NET Core SDK installed lets
you use the dotnet.exe command to run .NET Core applications in the 'normal' way. We use this in the
[Using Your Build](../workflow/UsingYourBuild.md) instructions. Visual Studio 2015 (update 3) should have
installed the .NET Core SDK, but in case it did not you can get it from the [Installing the .Net Core SDK](https://www.microsoft.com/net/core) page.
@@ -141,8 +141,8 @@ full rebuild.
Build has a number of options that you can learn about using build -?. Some of the more important options are
- * skiptests - don't build the tests. This can shorten build times quite a bit, but means you can't run tests.
- * release - build the 'Release' build type that does not have extra development-time checking compiled in.
+ * -skiptests - don't build the tests. This can shorten build times quite a bit, but means you can't run tests.
+ * -release - build the 'Release' build type that does not have extra development-time checking compiled in.
* -rebuild - force the build not to be incremental but to recompile everything.
You want this if you are going to do performance testing on your build.