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:
authorPetr Onderka <gsvick@gmail.com>2016-06-09 18:41:06 +0300
committerPetr Onderka <gsvick@gmail.com>2016-06-09 18:41:06 +0300
commitdd7cddfd807620079a64ad7f80d3a707b9db7923 (patch)
treee999e601ad26183189de32585bbd3f3bec7e60e0 /Documentation/building
parentafd774a4e25b8725c004bbbf7f73c9cf9d5a0ea9 (diff)
Use .builds for command line building instead of .sln
Diffstat (limited to 'Documentation/building')
-rw-r--r--Documentation/building/windows-instructions.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/building/windows-instructions.md b/Documentation/building/windows-instructions.md
index 7a710990e5..cb9926a012 100644
--- a/Documentation/building/windows-instructions.md
+++ b/Documentation/building/windows-instructions.md
@@ -29,10 +29,10 @@ the Visual Studio IDE.
### Building individual DLLs of the CoreFX
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 `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.
+For example the src\System.Diagnostics.DiagnosticSource directory holds the source code for the System.Diagnostics.DiagnosticSource.dll assembly. Each of these directories includes two projects, one for the DLL being built and one for the tests, both specified by a .builds file.
+You can build the DLL for System.Diagnostics.DiagnosticSource.dll by going to the src\System.Diagnostics.DiagnosticsSource\src directory and typing `msbuild System.Diagnostics.DiagnosticSource.builds`. The DLL ends up as bin\AnyOS.AnyCPU.Debug\System.Diagnostics.DiagnosticSource\System.DiagnosticSource.dll.
+You can build the tests for System.Diagnostics.DiagnosticSource.dll by going to
+src\System.Diagnostics.DiagnosticSource\tests and typing `msbuild System.Diagnostics.DiagnosticSource.Tests.builds`.
There is also a pkg directory for each project, 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\packages directory.