You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/msbuild/walkthrough-using-msbuild.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ Run MSBuild from the **Developer Command Prompt** for Visual Studio to build the
148
148
149
149
1. Open the **Command Window**.
150
150
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.
152
152
153
153
If you need to find it manually, the file is *LaunchDevCmd.bat* in the *{Visual Studio installation folder}\Common7\Tools* folder.
154
154
@@ -423,7 +423,7 @@ Change the `Message` task to use carriage returns and line feeds (%0A%0D) to dis
423
423
424
424
### Include, Exclude, and wildcards
425
425
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,
427
427
428
428
```xml
429
429
<PhotosInclude="images\*.jpeg" />
@@ -456,9 +456,9 @@ Change the `Message` task to use carriage returns and line feeds (%0A%0D) to dis
456
456
<CompileInclude="*.cs"Exclude="*Designer*">
457
457
```
458
458
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).
460
460
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,
462
462
463
463
```xml
464
464
<CompileInclude="*.cs" />
@@ -575,7 +575,7 @@ Notice how the phrase "Compile.DependentUpon" appears several times. The use of
575
575
Compile Filename: Settings.Designer
576
576
```
577
577
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.
0 commit comments