Skip to content

Commit db9ee8f

Browse files
authored
Merge pull request #2550 from v-thepet/cleanup
gerunds
2 parents deb55f9 + 5e7b19e commit db9ee8f

8 files changed

+13
-13
lines changed

docs/msbuild/al-assembly-linker-task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The AL task wraps *AL.exe*, a tool that is distributed with the [!INCLUDE[winsdk
5353
|`ProductVersion`|Optional `String` parameter.<br /><br /> Specifies a string for the `ProductVersion` field in the assembly. For more information, see the documentation for the `/productv[ersion]` option in [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker).|
5454
|`ResponseFiles`|Optional `String[]` parameter.<br /><br /> Specifies the response files that contain additional options to pass through to the Assembly Linker.|
5555
|`SdkToolsPath`|Optional `String` parameter.<br /><br /> Specifies the path to the SDK tools, such as resgen.exe.|
56-
|`SourceModules`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> One or more modules to be compiled into an assembly. The modules will be listed in the manifest of the resulting assembly, and will still need to distributed and available in order for the assembly to load. The items passed into this parameter may have additional metadata called `Target`, which specifies the path and filename to which the task copies the file, after which it compiles this new file into the assembly. For more information, see the documentation for [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker). This parameter corresponds to the list of modules passed into Al.exe without a specific switch.|
56+
|`SourceModules`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> One or more modules to be compiled into an assembly. The modules will be listed in the manifest of the resulting assembly, and will still need to distributed and available in order for the assembly to load. The items passed into this parameter may have additional metadata called `Target`, which specifies the path and filename to which the task copies the file, after which it compiles this new file into the assembly. For more information, see the documentation for [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker). This parameter corresponds to the list of modules passed into *Al.exe* without a specific switch.|
5757
|`TargetType`|Optional `String` parameter.<br /><br /> Specifies the file format of the output file: `library` (code library), `exe` (console application), or `win` (Windows-based application). The default is `library`. This parameter corresponds to the `/t[arget]` option in [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker).|
5858
|`TemplateFile`|Optional `String` parameter.<br /><br /> Specifies the assembly from which to inherit all assembly metadata, except the culture field. The specified assembly must have a strong name.<br /><br /> An assembly that you create with the `TemplateFile` parameter will be a satellite assembly. This parameter corresponds to the `/template` option in [Al.exe (Assembly Linker)](/dotnet/framework/tools/al-exe-assembly-linker).|
5959
|`Timeout`|Optional `Int32` parameter.<br /><br /> Specifies the amount of time, in milliseconds, after which the task executable is terminated. The default value is `Int.MaxValue`, indicating that there is no time out period.|

docs/msbuild/assignculture-task.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ This task accepts a list of items that may contain a valid .NET culture identifi
6868

6969
|Item collection|Contents|
7070
|---------------------|--------------|
71-
|`OutAssignedFiles`|`MyResource1.fr.resx (Culture="fr")`<br /><br /> `MyResource2.XX.resx` (no additional metadata)|
72-
|`OutAssignedFilesWithCulture`|`MyResource1.fr.resx (Culture="fr")`|
73-
|`OutAssignedFilesWithNoCulture`|`MyResource2.XX.resx` (no additional metadata)|
74-
|`OutCultureNeutralAssignedFiles`|`MyResource1.resx (Culture="fr")`<br /><br /> `MyResource2.XX.resx (`no additional metadata)|
71+
|`OutAssignedFiles`|*MyResource1.fr.resx* (Culture="fr")<br /><br /> *MyResource2.XX.resx* (no additional metadata)|
72+
|`OutAssignedFilesWithCulture`|*MyResource1.fr.resx* (Culture="fr")|
73+
|`OutAssignedFilesWithNoCulture`|*MyResource2.XX.resx* (no additional metadata)|
74+
|`OutCultureNeutralAssignedFiles`|*MyResource1.resx* (Culture="fr")<br /><br /> *MyResource2.XX.resx* (no additional metadata)|
7575

7676
## See also
7777
[Tasks](../msbuild/msbuild-tasks.md)

docs/msbuild/build-loggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ MSBuild /nologo /noconsolelogger /logger:SimpleLogger.dll /verbosity:Detailed
7373
[!code-csharp[msbuild_BasicLogger#1](../msbuild/codesnippet/CSharp/build-loggers_5.cs)]
7474

7575
## See also
76-
[Obtaining build logs](../msbuild/obtaining-build-logs-with-msbuild.md)
76+
[Obtain build logs](../msbuild/obtaining-build-logs-with-msbuild.md)
7777
[MSBuild concepts](../msbuild/msbuild-concepts.md)

docs/msbuild/cppclean-task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Deletes the temporary files that MSBuild creates when a Visual C++ project is bu
3434
|**DoDelete**|Optional **Boolean** parameter.<br /><br /> If `true`, clean temporary build files.|
3535
|**FilePatternsToDeleteOnClean**|Required `String` parameter.<br /><br /> Specifies a semicolon-delimited list of file extensions of files to clean.|
3636
|**FilesExcludedFromClean**|Optional `String` parameter.<br /><br /> Specifies a semicolon-delimited list of files not to clean.|
37-
|**FoldersToClean**|Required `String` parameter.<br /><br /> Specifies a semicolon-delimited list of directories to clean. You can specify a full or a relative path, and the path can contain the wildcard symbol (**\***).|
37+
|**FoldersToClean**|Required `String` parameter.<br /><br /> Specifies a semicolon-delimited list of directories to clean. You can specify a full or a relative path, and the path can contain the wildcard symbol (*).|
3838

3939
## See also
4040
[Task reference](../msbuild/msbuild-task-reference.md)

docs/msbuild/creating-forwarding-loggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ Forwarding loggers improve logging efficiency by letting you choose the events y
3535
When you build a project on a multi-processor system, the build messages from each processor are not automatically interleaved in a unified sequence. Instead, you must establish a message grouping priority by using the <xref:Microsoft.Build.Framework.BuildEventContext> class that is attached to every message. For more information about multi-processor building, see [Logging in a multi-processor environment](../msbuild/logging-in-a-multi-processor-environment.md).
3636

3737
## See also
38-
[Obtaining build logs](../msbuild/obtaining-build-logs-with-msbuild.md)
38+
[Obtain build logs](../msbuild/obtaining-build-logs-with-msbuild.md)
3939
[Build loggers](../msbuild/build-loggers.md)
4040
[Logging in a multi-processor environment](../msbuild/logging-in-a-multi-processor-environment.md)

docs/msbuild/customize-your-build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.workload:
1818

1919
MSBuild projects that use the standard build process (importing *Microsoft.Common.props* and *Microsoft.Common.targets*) have several extensibility hooks that you can use to customize your build process.
2020

21-
## Adding arguments to command-line MSBuild invocations for your project
21+
## Add arguments to command-line MSBuild invocations for your project
2222

2323
A *Directory.Build.rsp* file in or above your source directory will be applied to command-line builds of your project. For details, see [MSBuild response files](../msbuild/msbuild-response-files.md#directorybuildrsp).
2424

@@ -132,7 +132,7 @@ afterward. This allows installed SDKs to augment the build logic of common proje
132132

133133
The same directory structure is searched in `$(MSBuildUserExtensionsPath)`, which is the per-user folder *%LOCALAPPDATA%\Microsoft\MSBuild*. Files placed in that folder will be imported for all builds of the corresponding project type run under that user's credentials. You can disable the user extensions by setting properties named after the importing file in the pattern `ImportUserLocationsByWildcardBefore{ImportingFileNameWithNoDots}`. For example, setting `ImportUserLocationsByWildcardBeforeMicrosoftCommonProps` to `false` would prevent importing `$(MSBuildUserExtensionsPath)\$(MSBuildToolsVersion)\Imports\Microsoft.Common.props\ImportBefore\*`.
134134

135-
## Customizing the solution build
135+
## Customize the solution build
136136

137137
> [!IMPORTANT]
138138
> Customizing the solution build in this way applies only to command-line builds with *MSBuild.exe*. It **does not** apply to builds inside Visual Studio.

docs/msbuild/walkthrough-creating-an-msbuild-project-file-from-scratch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Programming languages that target the .NET Framework use MSBuild project files t
3838

3939
9. Build incrementally.
4040

41-
This walkthrough shows how to build the project at the command prompt and examine the results. For more information about MSBuild and how to run MSBuild at the command prompt, see [Walkthrough: Using MSBuild](../msbuild/walkthrough-using-msbuild.md).
41+
This walkthrough shows how to build the project at the command prompt and examine the results. For more information about MSBuild and how to run MSBuild at the command prompt, see [Walkthrough: Use MSBuild](../msbuild/walkthrough-using-msbuild.md).
4242

4343
To complete the walkthrough, you must have the .NET Framework (version 2.0, 3.5, 4.0, or 4.5) installed because it includes MSBuild and the Visual C# compiler, which are required for the walkthrough.
4444

@@ -469,7 +469,7 @@ Your project file should now resemble the following code:
469469
```
470470

471471
## What's next?
472-
Visual Studio can automatically do much of the work that is shown in this walkthrough. To learn how to use Visual Studio to create, edit, build, and test MSBuild project files, see [Walkthrough: Using MSBuild](../msbuild/walkthrough-using-msbuild.md).
472+
Visual Studio can automatically do much of the work that is shown in this walkthrough. To learn how to use Visual Studio to create, edit, build, and test MSBuild project files, see [Walkthrough: Use MSBuild](../msbuild/walkthrough-using-msbuild.md).
473473

474474
## See also
475475
[MSBuild overview](../msbuild/msbuild.md)

docs/msbuild/walkthrough-using-msbuild.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ manager: douge
1313
ms.workload:
1414
- "multiple"
1515
---
16-
# Walkthrough: Using MSBuild
16+
# Walkthrough: Use MSBuild
1717
MSBuild is the build platform for Microsoft and Visual Studio. This walkthrough introduces you to the building blocks of MSBuild and shows you how to write, manipulate, and debug MSBuild projects. You will learn about:
1818

1919
- Creating and manipulating a project file.

0 commit comments

Comments
 (0)