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

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiran Challa <kichalla@users.noreply.github.com>2017-06-06 20:39:13 +0300
committerGitHub <noreply@github.com>2017-06-06 20:39:13 +0300
commitb328ce48ad846fcd933c48ab077b534f9b8c6b76 (patch)
tree8f6e6ffb0f64789fb58a31cd045e7ea3d8afa029 /README.md
parent0cfecf4cb27a85b92c19b37a156c2fcbf1a8d4c8 (diff)
Updated Readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md21
1 files changed, 12 insertions, 9 deletions
diff --git a/README.md b/README.md
index 4c11464f18..1b049850fa 100644
--- a/README.md
+++ b/README.md
@@ -34,15 +34,18 @@ repositories. The subfolders are built in dependency order.
## Verifying cross repo changes
You can use the Universe repo to preemptively verify and prepare follow ups for your breaking changes:
- Clone the Universe repo https://github.com/aspnet/Universe
-- Add a branch attribute to the build\Repositories.props file to point to your branch in the repo you’re trying to verify. For instance,
- `<Repository Include="HtmlAbstractions" Commit="" />`
- becomes
- `<Repository Include="HtmlAbstractions" Commit="" Branch=”prkrishn/breaking-changes” />`
-- Run from the root of Universe,
- `build.cmd /p:CompileOnly=true /p:ShallowClone=true /p:BuildGraphOf=HtmlAbstractions`
- This should clone and compile all the repos against your breaking changes branch. If you’d like to additionally run tests in all your dependencies (this will take a while), remove the first parameter:
- `build.cmd /p:ShallowClone=true /p:BuildGraphOf=HtmlAbstractions`
- The ShallowClone property speeds up git clone and is optional in both cases.
+- Add a branch attribute to the `build\Repositories.props` file to point to your branch in the repo you’re trying to verify. For instance,
+ `<Repository Include="HtmlAbstractions" Commit="" />`
+ becomes
+ `<Repository Include="HtmlAbstractions" Commit="" Branch="prkrishn/breaking-changes" />`
+ **Note**: This branch should have been pushed to the server already.
+- Run from the root of Universe
+ `build.cmd /p:CompileOnly=true /p:ShallowClone=true /p:BuildGraphOf=HtmlAbstractions`
+
+ This should clone and compile all the repos against your breaking changes branch. If you’d like to additionally run tests in all your dependencies (this will take a while and also you could hit some flaky tests), remove the first parameter:
+ `build.cmd /p:ShallowClone=true /p:BuildGraphOf=HtmlAbstractions`
+
+ The ShallowClone property speeds up git clone and is optional in both cases.
This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the [Home](https://github.com/aspnet/home) repo.