Browse Source

Sync shared code from runtime (#29564)

Co-authored-by: Tratcher <[email protected]>
github-actions[bot] 5 years ago
parent
commit
c070dce134

+ 14 - 14
src/Shared/runtime/ReadMe.SharedCode.md

@@ -1,16 +1,16 @@
-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.
+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.
 
 dotnet/runtime code paths:
 - runtime\src\libraries\Common\src\System\Net\Http\aspnetcore
 - runtime\src\libraries\Common\tests\Tests\System\Net\aspnetcore
 
-dotnet/AspNetCore code paths:
-- AspNetCore\src\Shared\runtime
-- AspNetCore\src\Shared\test\Shared.Tests\runtime
+dotnet/aspnetcore code paths:
+- aspnetcore\src\Shared\runtime
+- aspnetcore\src\Shared\test\Shared.Tests\runtime
 
 ## Copying code
-- To copy code from dotnet/runtime to dotnet/AspNetCore, set ASPNETCORE_REPO to the AspNetCore repo root and then run CopyToAspNetCore.cmd.
-- To copy code from dotnet/AspNetCore to dotnet/runtime, set RUNTIME_REPO to the runtime repo root and then run CopyToRuntime.cmd.
+- To copy code from dotnet/runtime to dotnet/aspnetcore, set ASPNETCORE_REPO to the aspnetcore repo root and then run CopyToAspNetCore.cmd.
+- To copy code from dotnet/aspnetcore to dotnet/runtime, set RUNTIME_REPO to the runtime repo root and then run CopyToRuntime.cmd.
 
 ## Building dotnet/runtime code:
 - https://github.com/dotnet/runtime/tree/master/docs/workflow
@@ -23,14 +23,14 @@ dotnet/AspNetCore code paths:
 - `PS D:\github\runtime\src\libraries\Common\tests> dotnet build /t:test`
 - `PS D:\github\runtime\src\libraries\System.Net.Http\tests\UnitTests> dotnet build /t:test`
 
-## Building dotnet/AspNetCore code:
+## Building dotnet/aspnetcore code:
 - https://github.com/dotnet/aspnetcore/blob/main/docs/BuildFromSource.md
-- Run restore in the root once: `PS D:\github\AspNetCore> .\restore.cmd`
-- Activate to use the repo local runtime: `PS D:\github\AspNetCore> . .\activate.ps1`
+- Run restore in the root once: `PS D:\github\aspnetcore> .\restore.cmd`
+- Activate to use the repo local runtime: `PS D:\github\aspnetcore> . .\activate.ps1`
 - Build the individual projects:
-- `(AspNetCore) PS D:\github\AspNetCore\src\Shared\test\Shared.Tests> dotnet build`
-- `(AspNetCore) PS D:\github\AspNetCore\src\servers\Kestrel\core\src> dotnet build`
+- `(aspnetcore) PS D:\github\aspnetcore\src\Shared\test\Shared.Tests> dotnet build`
+- `(aspnetcore) PS D:\github\aspnetcore\src\servers\Kestrel\core\src> dotnet build`
 
-### Running dotnet/AspNetCore tests:
-- `(AspNetCore) PS D:\github\AspNetCore\src\Shared\test\Shared.Tests> dotnet test`
-- `(AspNetCore) PS D:\github\AspNetCore\src\servers\Kestrel\core\test> dotnet test`
+### Running dotnet/aspnetcore tests:
+- `(aspnetcore) PS D:\github\aspnetcore\src\Shared\test\Shared.Tests> dotnet test`
+- `(aspnetcore) PS D:\github\aspnetcore\src\servers\Kestrel\core\test> dotnet test`

+ 1 - 1
src/Shared/test/Shared.Tests/runtime/ReadMe.SharedCode.md

@@ -2,4 +2,4 @@ The code in this directory is shared between the runtime libraries and AspNetCor
 
 For additional details see:
 - runtime/src/libraries/Common/src/System/Net/Http/aspnetcore/ReadMe.SharedCode.md
-- AspNetCore/src/Shared/runtime/ReadMe.SharedCode.md
+- aspnetcore/src/Shared/runtime/ReadMe.SharedCode.md