Skip to content

Commit 7f2dfb0

Browse files
authored
Fix Build From Source example (#56105)
1 parent 3a2a931 commit 7f2dfb0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/BuildFromSource.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,13 @@ The steps you follow next depend on your preferred development environment:
5959
./restore.cmd
6060
```
6161

62-
1. You'll typically focus on one project in the repo. You can use the `startvs.cmd` command to launch Visual Studio in a particular project area. For example, to launch Visual Studio in the `Components` project:
62+
1. You'll typically focus on one project in the repo. You can use the `startvs.cmd` command to launch Visual Studio in a particular project area. For example, to launch Visual Studio in the `src/Http` project, after you have built it with `./build.cmd`:
63+
64+
> :bulb: The `build.cmd` script will be local to the directory of the project you opened. For example, the script located in the `src/Http` directory. If you want to build the whole tree, use the `build.cmd` that is located in the `eng` directory.
6365
6466
```powershell
65-
cd src\Components
67+
cd src/Http
68+
./build.cmd
6669
./startvs.cmd
6770
```
6871

0 commit comments

Comments
 (0)