1
- The code in this directory is shared between dotnet/runtime and dotnet/AspNetCore . This contains HTTP/2 and HTTP/3 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 dotnet/aspnetcore . This contains HTTP/2 and HTTP/3 protocol infrastructure such as an HPACK implementation. Any changes to this dir need to be checked into both repositories.
2
2
3
3
dotnet/runtime code paths:
4
4
- runtime\src\libraries\Common\src\System\Net\Http\aspnetcore
5
5
- runtime\src\libraries\Common\tests\Tests\System\Net\aspnetcore
6
6
7
- dotnet/AspNetCore code paths:
8
- - AspNetCore \src\Shared\runtime
9
- - AspNetCore \src\Shared\test\Shared.Tests\runtime
7
+ dotnet/aspnetcore code paths:
8
+ - aspnetcore \src\Shared\runtime
9
+ - aspnetcore \src\Shared\test\Shared.Tests\runtime
10
10
11
11
## Copying code
12
- - To copy code from dotnet/runtime to dotnet/AspNetCore , set ASPNETCORE_REPO to the AspNetCore repo root and then run CopyToAspNetCore.cmd.
13
- - To copy code from dotnet/AspNetCore to dotnet/runtime, set RUNTIME_REPO to the runtime repo root and then run CopyToRuntime.cmd.
12
+ - To copy code from dotnet/runtime to dotnet/aspnetcore , set ASPNETCORE_REPO to the aspnetcore repo root and then run CopyToAspNetCore.cmd.
13
+ - To copy code from dotnet/aspnetcore to dotnet/runtime, set RUNTIME_REPO to the runtime repo root and then run CopyToRuntime.cmd.
14
14
15
15
## Building dotnet/runtime code:
16
16
- https://github.com/dotnet/runtime/tree/master/docs/workflow
@@ -23,14 +23,14 @@ dotnet/AspNetCore code paths:
23
23
- ` PS D:\github\runtime\src\libraries\Common\tests> dotnet build /t:test `
24
24
- ` PS D:\github\runtime\src\libraries\System.Net.Http\tests\UnitTests> dotnet build /t:test `
25
25
26
- ## Building dotnet/AspNetCore code:
26
+ ## Building dotnet/aspnetcore code:
27
27
- https://github.com/dotnet/aspnetcore/blob/main/docs/BuildFromSource.md
28
- - Run restore in the root once: ` PS D:\github\AspNetCore > .\restore.cmd `
29
- - Activate to use the repo local runtime: ` PS D:\github\AspNetCore > . .\activate.ps1 `
28
+ - Run restore in the root once: ` PS D:\github\aspnetcore > .\restore.cmd `
29
+ - Activate to use the repo local runtime: ` PS D:\github\aspnetcore > . .\activate.ps1 `
30
30
- Build the individual projects:
31
- - ` (AspNetCore ) PS D:\github\AspNetCore \src\Shared\test\Shared.Tests> dotnet build `
32
- - ` (AspNetCore ) PS D:\github\AspNetCore \src\servers\Kestrel\core\src> dotnet build `
31
+ - ` (aspnetcore ) PS D:\github\aspnetcore \src\Shared\test\Shared.Tests> dotnet build `
32
+ - ` (aspnetcore ) PS D:\github\aspnetcore \src\servers\Kestrel\core\src> dotnet build `
33
33
34
- ### Running dotnet/AspNetCore tests:
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 `
34
+ ### Running dotnet/aspnetcore tests:
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 `
0 commit comments