Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2016-03-10 06:00:57 +0300
committerStephen Toub <stoub@microsoft.com>2016-03-10 06:00:57 +0300
commit44df2980981078dee18f3c689b2c76b29fb1438e (patch)
tree3e00531113466c03792830d7ea01fe9b44f842ad /Documentation/building
parent785ff206e7d428b608f657f064cecbe3a856382c (diff)
Fix a few typos
Diffstat (limited to 'Documentation/building')
-rw-r--r--Documentation/building/windows-instructions.md18
1 files changed, 5 insertions, 13 deletions
diff --git a/Documentation/building/windows-instructions.md b/Documentation/building/windows-instructions.md
index 944000bda0..05576f6956 100644
--- a/Documentation/building/windows-instructions.md
+++ b/Documentation/building/windows-instructions.md
@@ -26,22 +26,14 @@ the Visual Studio IDE.
### Building individual DLLs of the CoreFX
-Under the src directory is a set of directortories, each of which reprsents a particular Assembly in the CoreFX.
-For example the src\System.Diagnostics.DiagnosticSource directory holds the source code for the System.Diagnostics.DiagnosticSource.dll assembly. Each of these Directories has a .SLN solution
+Under the src directory is a set of directories, each of which represents a particular assembly in CoreFX.
+For example the src\System.Diagnostics.DiagnosticSource directory holds the source code for the System.Diagnostics.DiagnosticSource.dll assembly. Each of these directories has a .sln solution
file that typically includes two projects, one for the DLL being built and one for the tests. Thus
you can build both the DLL and Tests for System.Diagnostics.DiagnosticSource.dll by going to
-src\System.Diagnostics.DiagnosticSource and typing
+src\System.Diagnostics.DiagnosticSource and typing `msbuild`. You can build just the System.Diagnostics.DiagnosticSource.dll (without the tests) by going to the src\System.Diagnostics.DiagnosticsSource\src directory and again typing `msbuild`. The DLL ends up as bin\AnyOS.AnyCPU.Debug\System.Diagnostics.DiagnosticSource\System.DiagnosticSource.dll.
- msbuild
-
-You can build just the System.Diagnostics.DiagnosticsSource.dll (without the tests) by going to the src\System.Diagnostics.DiagnosticsSource\src directory and again typing
-
- msbuild
-
-The DLL ends up as bin\AnyOS.AnyCPU.Debug\System.Diagnostics.DiagnosticSource\System.DiagnosticSource.dll
-
-There is also a pkg directory and if you go to directory and type msbuild, it will build the DLL (if needed)
-and the also build the Nuget package for it. The Nuget package ends up in the bin\pkg directory.
+There is also a pkg directory, and if you go into it and type `msbuild`, it will build the DLL (if needed)
+and then also build the Nuget package for it. The Nuget package ends up in the bin\pkg directory.
### Building other OSes