Skip to content

Commit 65a6e87

Browse files
committed
edits
1 parent 7e727f8 commit 65a6e87

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/msbuild/how-to-build-the-same-source-files-with-different-options.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ When you build projects, you frequently compile the same components with differe
2121

2222
## Use properties to control build settings
2323

24-
The `Property` element defines a variable that has multiple references in a project file. The variable might identify the location of a temporary directory, or set the values for properties used in several configurations, such as a Debug or Release build. For more information about properties, see [MSBuild properties](msbuild-properties.md).
24+
The `Property` element defines a variable that has multiple references in a project file. The variable might identify the location of a temporary directory, or set the values for properties used in several configurations, such as Debug and Release builds. For more information about properties, see [MSBuild properties](msbuild-properties.md).
2525

2626
You can use properties to change the configuration of your build without having to change the project file. The `Condition` attribute of the `Property` and `PropertyGroup` elements allows you to change the value of properties.
2727

@@ -80,13 +80,13 @@ For more information, see [Use environment variables in a build](how-to-use-envi
8080

8181
The following example demonstrates a project file that defines two property groups to build a Debug or Release version of the project.
8282

83-
- To build the Debug version, use the `-property` (`-p`) switch with the `flavor` property value to `debug`:
83+
- To build the Debug version, use the `-property` (`-p`) switch with the `flavor` property value set to `debug`:
8484

8585
```cmd
8686
msbuild consolehwcs1.proj -p:flavor=debug
8787
```
8888

89-
- To build the Release version, use the `-property` (`-p`) switch with the `flavor` property value to `retail`:
89+
- To build the Release version, use the `-property` (`-p`) switch with the `flavor` property value set to `retail`:
9090

9191
```cmd
9292
msbuild consolehwcs1.proj -p:flavor=retail
@@ -178,7 +178,7 @@ ToolsVersion="4.0" TreatAsLocalProperty="Color">
178178

179179
## Related content
180180

181-
- [MSBuild](../msbuild/msbuild.md)
182-
- [MSBuild concepts](../msbuild/msbuild-concepts.md)
183-
- [MSBuild reference](../msbuild/msbuild-reference.md)
184-
- [Project element (MSBuild)](../msbuild/project-element-msbuild.md)
181+
- [MSBuild](msbuild.md)
182+
- [MSBuild concepts](msbuild-concepts.md)
183+
- [MSBuild reference](msbuild-reference.md)
184+
- [Project element (MSBuild)](project-element-msbuild.md)

0 commit comments

Comments
 (0)