Skip to content

Commit 7e21e07

Browse files
authored
Apply suggestions from code review
1 parent 497626f commit 7e21e07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/msbuild/customize-your-build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ If you need different behaviors depending on the .NET language (C#, Visual Basic
192192

193193
## Handle generated files
194194

195-
In any given build, files that get generated during the build behave differently from static files (such as source files). For this reason, it's important to understand [How MSBuild Builds Projects](build-process-overview.md). The two phases are [Evaluation phase](build-process-overview.md#evaluation-phase) and [Execution phase](build-process-overview.md#execution-phase). During Evaluation, MSBuild reads your project, imports everything, creates properties, expands globs for items, and sets up the build process. During Execution, MSBuild performs the build by running targets and tasks with the data it parsed during Evaluation.
195+
In any given build, files that get generated during the build behave differently from static files (such as source files). For this reason, it's important to understand [How MSBuild Builds Projects](build-process-overview.md). The two phases are the [evaluation phase](build-process-overview.md#evaluation-phase) and the [execution phase](build-process-overview.md#execution-phase). During the evaluation phase, MSBuild reads your project, imports everything, creates properties, expands globs for items, and sets up the build process. During the execution phase, MSBuild performs the build by running targets and tasks with the data it parsed during the evaluation phase.
196196

197-
Files generated during execution don't exist during evaluation, therefore they aren't included in the build process. To solve this problem, you must manually add the generated files into the build process. The recommended way to do this is by adding the new file to the `Content` or `None` items before the `BeforeBuild` target, as in the following example:
197+
Files generated during execution don't exist during the evaluation phase, therefore they aren't included in the build process. To solve this problem, you must manually add the generated files into the build process. The recommended way to do this is by adding the new file to the `Content` or `None` items before the `BeforeBuild` target, as in the following example:
198198

199199
```xml
200200
<Target Name="MyTarget" BeforeTargets="BeforeBuild">

0 commit comments

Comments
 (0)