From 394561095aa498889f7dafffb12ae299fb91e916 Mon Sep 17 00:00:00 2001 From: Andrey Kurdyumov Date: Thu, 2 Apr 2020 17:55:41 +0600 Subject: [PATCH] Fix ordering of the instructions (#34447) Command for opening Visual Studio works from root folder, but not inside library folder as was implied by ordering in the instructions. --- docs/workflow/building/libraries/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/workflow/building/libraries/README.md b/docs/workflow/building/libraries/README.md index 7f5fe69..eaafa3e 100644 --- a/docs/workflow/building/libraries/README.md +++ b/docs/workflow/building/libraries/README.md @@ -12,12 +12,12 @@ git pull upstream master & git push origin master build -subsetCategory coreclr-libraries -runtimeConfiguration Release :: The above you may only perform once in a day, or when you pull down significant new changes. -:: Switch to working on a given library (RegularExpressions in this case) -cd src\libraries\System.Text.RegularExpressions - :: If you use Visual Studio, you might open System.Text.RegularExpressions.sln here. build -vs System.Text.RegularExpressions +:: Switch to working on a given library (RegularExpressions in this case) +cd src\libraries\System.Text.RegularExpressions + :: Change to test directory cd tests -- 2.7.4