Skip to content

Commit 141c575

Browse files
authored
Acrolinx
1 parent 994f3e3 commit 141c575

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/msbuild/how-to-use-environment-variables-in-a-build.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ ms.subservice: msbuild
1414
---
1515
# Use environment variables in a build
1616

17-
When you build projects, it is often necessary to set build options using information that is not in the project file or the files that comprise your project. This information is typically stored in environment variables.
17+
When you build projects, it's often necessary to set build options using information that isn't in the project file or the files that comprise your project. This information is typically stored in environment variables.
1818

1919
## Reference environment variables
2020

21-
All environment variables that are valid MSBuild property names are available to the Microsoft Build Engine (MSBuild) project file as properties. Valid property names are described in [MSBuild properties](msbuild-properties.md). For example, environment variables that begin with a number are not available in MSBuild.
21+
All environment variables that are valid MSBuild property names are available to the MSBuild project file as properties. Valid property names are described in [MSBuild properties](msbuild-properties.md). For example, environment variables that begin with a number are not available in MSBuild.
2222

2323
> [!NOTE]
2424
> If the project file contains an explicit definition of a property that has the same name as an environment variable, the property in the project file overrides the value of the environment variable.
@@ -29,7 +29,7 @@ When you build projects, it is often necessary to set build options using inform
2929

3030
`<FinalOutput>$(BIN_PATH)\MyAssembly.dll</FinalOutput>`
3131

32-
You can use a `Condition` attribute to provide a default value for a property if the environment variable was not set.
32+
You can use a `Condition` attribute to provide a default value for a property if the environment variable wasn't set.
3333

3434
#### To provide a default value for a property
3535

0 commit comments

Comments
 (0)