|
1 |
| -The code in this directory is shared between CoreFx and AspNetCore. This contains HTTP/2 protocol infrastructure such as an HPACK implementation. Any changes to this dir need to be checked into both repositories. |
| 1 | +The code in this directory is shared between dotnet/runtime and aspnet/AspNetCore. This contains HTTP/2 protocol infrastructure such as an HPACK implementation. Any changes to this dir need to be checked into both repositories. |
2 | 2 |
|
3 |
| -Corefx code paths: |
4 |
| -- corefx\src\Common\src\System\Net\Http\Http2 |
5 |
| -- corefx\src\Common\tests\Tests\System\Net\Http2 |
6 |
| -AspNetCore code paths: |
| 3 | +dotnet/runtime code paths: |
| 4 | +- runtime\src\libraries\Common\src\System\Net\Http\Http2 |
| 5 | +- runtime\src\libraries\Common\tests\Tests\System\Net\Http2 |
| 6 | +aspnet/AspNetCore code paths: |
7 | 7 | - AspNetCore\src\Shared\Http2
|
8 | 8 | - AspNetCore\src\Shared\test\Shared.Tests\Http2
|
9 | 9 |
|
10 | 10 | ## Copying code
|
11 |
| -To copy code from CoreFx to AspNetCore set ASPNETCORE_REPO to the AspNetCore repo root and then run CopyToAspNetCore.cmd. |
12 |
| -To copy code from AspNetCore to CoreFx set COREFX_REPO to the CoreFx repo root and then run CopyToCoreFx.cmd. |
| 11 | +To copy code from dotnet/runtime to aspnet/AspNetCore, set ASPNETCORE_REPO to the AspNetCore repo root and then run CopyToAspNetCore.cmd. |
| 12 | +To copy code from aspnet/AspNetCore to dotnet/runtime, set RUNTIME_REPO to the runtime repo root and then run CopyToRuntime.cmd. |
13 | 13 |
|
14 |
| -## Building CoreFx code: |
15 |
| -- https://github.com/dotnet/corefx/blob/master/Documentation/building/windows-instructions.md |
16 |
| -- https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/developer-guide.md |
17 |
| -- Run build.cmd from the root once: `PS D:\github\corefx> .\build.cmd` |
| 14 | +## Building dotnet/runtime code: |
| 15 | +- https://github.com/dotnet/runtime/blob/master/docs/libraries/building/windows-instructions.md |
| 16 | +- https://github.com/dotnet/runtime/blob/master/docs/libraries/project-docs/developer-guide.md |
| 17 | +- Run libraries.cmd from the root once: `PS D:\github\runtime> .\libraries.cmd` |
18 | 18 | - Build the individual projects:
|
19 |
| -- `PS D:\github\corefx\src\Common\tests> dotnet msbuild /t:rebuild` |
20 |
| -- `PS D:\github\corefx\src\System.Net.Http\src> dotnet msbuild /t:rebuild` |
| 19 | +- `PS D:\github\dotnet\src\libraries\Common\tests> dotnet msbuild /t:rebuild` |
| 20 | +- `PS D:\github\dotnet\src\libraries\System.Net.Http\src> dotnet msbuild /t:rebuild` |
21 | 21 |
|
22 |
| -### Running CoreFx tests: |
23 |
| -- `PS D:\github\corefx\src\Common\tests> dotnet msbuild /t:rebuildandtest` |
24 |
| -- `PS D:\github\corefx\src\System.Net.Http\tests\UnitTests> dotnet msbuild /t:rebuildandtest` |
| 22 | +### Running dotnet/runtime tests: |
| 23 | +- `PS D:\github\runtime\src\libraries\Common\tests> dotnet msbuild /t:rebuildandtest` |
| 24 | +- `PS D:\github\runtime\src\libraries\System.Net.Http\tests\UnitTests> dotnet msbuild /t:rebuildandtest` |
25 | 25 |
|
26 |
| -## Building AspNetCore code: |
| 26 | +## Building aspnet/AspNetCore code: |
27 | 27 | - https://github.com/aspnet/AspNetCore/blob/master/docs/BuildFromSource.md
|
28 | 28 | - Run restore in the root once: `PS D:\github\AspNetCore> .\restore.cmd`
|
29 | 29 | - Activate to use the repo local runtime: `PS D:\github\AspNetCore> . .\activate.ps1`
|
30 | 30 | - Build the individual projects:
|
31 | 31 | - `(AspNetCore) PS D:\github\AspNetCore\src\Shared\test\Shared.Tests> dotnet msbuild`
|
32 | 32 | - `(AspNetCore) PS D:\github\AspNetCore\src\servers\Kestrel\core\src> dotnet msbuild`
|
33 | 33 |
|
34 |
| -### Running AspNetCore tests: |
| 34 | +### Running aspnet/AspNetCore tests: |
35 | 35 | - `(AspNetCore) PS D:\github\AspNetCore\src\Shared\test\Shared.Tests> dotnet test`
|
36 |
| -- `(AspNetCore) PS D:\github\AspNetCore\src\servers\Kestrel\core\test> dotnet test` |
| 36 | +- `(AspNetCore) PS D:\github\AspNetCore\src\servers\Kestrel\core\test> dotnet test` |
0 commit comments