Fix typo in docs/workflow/building/libraries (#40600)
authorKey Kim <keyhyuk.kim@gmail.com>
Mon, 10 Aug 2020 03:40:09 +0000 (12:40 +0900)
committerGitHub <noreply@github.com>
Mon, 10 Aug 2020 03:40:09 +0000 (20:40 -0700)
build command does not exist, it should be build.cmd

docs/workflow/building/libraries/README.md

index ec0f523..84daa4a 100644 (file)
@@ -9,11 +9,11 @@ Here is one example of a daily workflow for a developer working mainly on the li
 git clean -xdf
 git pull upstream master & git push origin master
 :: Build Debug libraries on top of Release runtime:
-build clr+libs -rc Release
+build.cmd clr+libs -rc Release
 :: The above you may only perform once in a day, or when you pull down significant new changes.
 
 :: If you use Visual Studio, you might open System.Text.RegularExpressions.sln here.
-build -vs System.Text.RegularExpressions
+build.cmd -vs System.Text.RegularExpressions
 
 :: Switch to working on a given library (RegularExpressions in this case)
 cd src\libraries\System.Text.RegularExpressions