Skip to content

Commit 7166f28

Browse files
committed
Acrolinx
1 parent d1a03e2 commit 7166f28

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/msbuild/walkthrough-using-msbuild.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Run MSBuild from the **Developer Command Prompt** for Visual Studio to build the
148148

149149
1. Open the **Command Window**.
150150

151-
In the search box on the taskbar, start typing the name of the tool, such as `dev` or `developer command prompt`. This brings up a list of installed apps that match your search pattern.
151+
In the search box on the taskbar, start typing the name of the tool, such as `dev` or `developer command prompt`. A list of installed apps that match your search pattern appears.
152152

153153
If you need to find it manually, the file is *LaunchDevCmd.bat* in the *{Visual Studio installation folder}\Common7\Tools* folder.
154154

@@ -423,7 +423,7 @@ Change the `Message` task to use carriage returns and line feeds (%0A%0D) to dis
423423

424424
### Include, Exclude, and wildcards
425425

426-
You can use the wildcards "*", "\*\*", and "?" with the Include attribute to add items to an item type. For example,
426+
You can use the wildcards "*", "\*\*", and "?" with the `Include` attribute to add items to an item type. For example,
427427

428428
```xml
429429
<Photos Include="images\*.jpeg" />
@@ -456,9 +456,9 @@ Change the `Message` task to use carriage returns and line feeds (%0A%0D) to dis
456456
<Compile Include="*.cs" Exclude="*Designer*">
457457
```
458458

459-
adds all files with the file extension *.cs* to the Compile item type, except for files whose names contain the string *Designer*. For more examples, see [How to: Exclude files from the build](../msbuild/how-to-exclude-files-from-the-build.md).
459+
adds all files with the file extension *.cs* to the `Compile` item type, except for files whose names contain the string *Designer*. For more examples, see [How to: Exclude files from the build](../msbuild/how-to-exclude-files-from-the-build.md).
460460

461-
The `Exclude` attribute only affects the items added by the Include attribute in the item element that contains them both. For example,
461+
The `Exclude` attribute only affects the items added by the `Include` attribute in the item element that contains them both. For example,
462462

463463
```xml
464464
<Compile Include="*.cs" />
@@ -575,7 +575,7 @@ Notice how the phrase "Compile.DependentUpon" appears several times. The use of
575575
Compile Filename: Settings.Designer
576576
```
577577

578-
By comparing the preceding two examples, you can see that while not every item in the Compile item type has DependentUpon metadata, all items have the well-known Filename metadata.
578+
By comparing the preceding two examples, you can see that while not every item in the `Compile` item type has DependentUpon metadata, all items have the well-known Filename metadata.
579579

580580
### Metadata transformations
581581

0 commit comments

Comments
 (0)