Skip to content

Commit 4ec3a25

Browse files
authored
Fix typo in docs/workflow/building/libraries (#40600)
build command does not exist, it should be build.cmd
1 parent 3b4f708 commit 4ec3a25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/workflow/building/libraries/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Here is one example of a daily workflow for a developer working mainly on the li
99
git clean -xdf
1010
git pull upstream master & git push origin master
1111
:: Build Debug libraries on top of Release runtime:
12-
build clr+libs -rc Release
12+
build.cmd clr+libs -rc Release
1313
:: The above you may only perform once in a day, or when you pull down significant new changes.
1414
1515
:: If you use Visual Studio, you might open System.Text.RegularExpressions.sln here.
16-
build -vs System.Text.RegularExpressions
16+
build.cmd -vs System.Text.RegularExpressions
1717
1818
:: Switch to working on a given library (RegularExpressions in this case)
1919
cd src\libraries\System.Text.RegularExpressions

0 commit comments

Comments
 (0)