summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Documentation/building/testing-with-corefx.md22
1 files changed, 12 insertions, 10 deletions
diff --git a/Documentation/building/testing-with-corefx.md b/Documentation/building/testing-with-corefx.md
index 92b94b9d5c..97c81200c5 100644
--- a/Documentation/building/testing-with-corefx.md
+++ b/Documentation/building/testing-with-corefx.md
@@ -6,16 +6,18 @@ It may be valuable to use CoreFX tests to validate your changes to CoreCLR or ms
In order to do this you need to create a file called `localpublish.props` under the `<repo root>\packages` folder.
The contents of the file should look like this (make sure to update the version to the current version of the CoreCLR package used by CoreFx):
- <Project ToolsVersion="12.0" DefaultTargets="Build"
- xmlns="http://schemas.microsoft.com/developer/msbuilding/2003">
- <ItemGroup>
- <LocalPackages Include="$(PackagesBinDir)">
- <PackageName>Microsoft.DotNet.CoreCLR</PackageName>
- <PackageVersion>1.0.2-prerelease</PackageVersion>
- <InstallLocation><corefx repo root>\packages</InstallLocation>
- </LocalPackages>
- </ItemGroup>
- </Project>
+```xml
+<Project ToolsVersion="12.0" DefaultTargets="Build"
+ xmlns="http://schemas.microsoft.com/developer/msbuilding/2003">
+ <ItemGroup>
+ <LocalPackages Include="$(PackagesBinDir)">
+ <PackageName>Microsoft.DotNet.CoreCLR</PackageName>
+ <PackageVersion>1.0.2-prerelease</PackageVersion>
+ <InstallLocation><corefx repo root>\packages</InstallLocation>
+ </LocalPackages>
+ </ItemGroup>
+</Project>
+```
Once this file is there, subsequent builds of the CoreCLR repo will install the CoreCLR package into the location specified by `InstallLocation`.