From 557bcd9ec53fc79b7d2c373c566c81f5c17f4b54 Mon Sep 17 00:00:00 2001 From: "msftbot[bot]" <48340428+msftbot[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2020 18:50:24 +0000 Subject: [PATCH] readme update (#19553) Co-authored-by: Justin Kotalik --- src/Shared/runtime/ReadMe.SharedCode.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Shared/runtime/ReadMe.SharedCode.md b/src/Shared/runtime/ReadMe.SharedCode.md index b9f4803617..dcb4cc4f0e 100644 --- a/src/Shared/runtime/ReadMe.SharedCode.md +++ b/src/Shared/runtime/ReadMe.SharedCode.md @@ -14,14 +14,14 @@ dotnet/AspNetCore code paths: ## Building dotnet/runtime code: - https://github.com/dotnet/runtime/tree/master/docs/workflow -- Run *build.cmd* from the root once: `PS D:\github\runtime> .\build.cmd -subsetCategory libraries` +- Run *build.cmd* from the root once: `PS D:\github\runtime> .\build.cmd -runtimeConfiguration Release -subsetCategory coreclr-libraries` - Build the individual projects: -- `PS D:\github\dotnet\src\libraries\Common\tests> dotnet msbuild /t:rebuild` -- `PS D:\github\dotnet\src\libraries\System.Net.Http\src> dotnet msbuild /t:rebuild` +- `PS D:\github\dotnet\src\libraries\Common\tests> dotnet build` +- `PS D:\github\dotnet\src\libraries\System.Net.Http\src> dotnet build` ### Running dotnet/runtime tests: -- `PS D:\github\runtime\src\libraries\Common\tests> dotnet msbuild /t:rebuildandtest` -- `PS D:\github\runtime\src\libraries\System.Net.Http\tests\UnitTests> dotnet msbuild /t:rebuildandtest` +- `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: - https://github.com/dotnet/AspNetCore/blob/master/docs/BuildFromSource.md