Skip to content

Commit 09660ae

Browse files
author
Greg Van Liew
authored
Merge branch 'live' into master
2 parents 9b332c2 + 7438bfe commit 09660ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/msbuild/delete-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Deletes the specified files.
4848
|---------------|-----------------|
4949
|`DeletedFiles`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` output parameter.<br /><br /> Specifies the files that were successfully deleted.|
5050
|`Files`|Required <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> Specifies the files to delete.|
51-
|`TreatErrorsAsWarnings`|Optional `Boolean` parameter<br /><br /> If `true`, errors are logged as warnings. The defalut value is `false`.|
51+
|`TreatErrorsAsWarnings`|Optional `Boolean` parameter<br /><br /> If `true`, errors are logged as warnings. The default value is `false`.|
5252

5353
## Remarks
5454
In addition to the parameters listed above, this task inherits parameters from the <xref:Microsoft.Build.Tasks.TaskExtension> class, which itself inherits from the <xref:Microsoft.Build.Utilities.Task> class. For a list of these additional parameters and their descriptions, see [TaskExtension Base Class](../msbuild/taskextension-base-class.md).
@@ -71,4 +71,4 @@ Deletes the specified files.
7171

7272
## See Also
7373
[Tasks](../msbuild/msbuild-tasks.md)
74-
[Task Reference](../msbuild/msbuild-task-reference.md)
74+
[Task Reference](../msbuild/msbuild-task-reference.md)

docs/msbuild/exec-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Runs the specified program or command by using the specified arguments.
5151
|`CustomWarningRegularExpression`|Optional `String` parameter.<br /><br /> Specifies a regular expression that is used to spot warning lines in the tool output. This is useful for tools that produce unusually formatted output.|
5252
|`ExitCode`|Optional `Int32` output read-only parameter.<br /><br /> Specifies the exit code that is provided by the executed command.|
5353
|`IgnoreExitCode`|Optional `Boolean` parameter.<br /><br /> If `true`, the task ignores the exit code that is provided by the executed command. Otherwise, the task returns `false` if the executed command returns a non-zero exit code.|
54-
|`IgnoreStandardErrorWarningFormat`|Optional `Boolean` parameter.<br /><br /> If `false`, selects lines in the output that match the standard error/warning format, and logs them as errors/warnings. If `true`, disable this behavior.|
54+
|`IgnoreStandardErrorWarningFormat`|Optional `Boolean` parameter.<br /><br /> If `false`, selects lines in the output that match the standard error/warning format, and logs them as errors/warnings. If `true`, disable this behavior. The default value is `false`.|
5555
|`Outputs`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` output parameter.<br /><br /> Contains the output items from the task. The `Exec` task does not set these itself. Instead, you can provide them as if it did set them, so that they can be used later in the project.|
5656
|`StdErrEncoding`|Optional `String` output parameter.<br /><br /> Specifies the encoding of the captured task standard error stream. The default is the current console output encoding.|
5757
|`StdOutEncoding`|Optional `String` output parameter.<br /><br /> Specifies the encoding of the captured task standard output stream. The default is the current console output encoding.|
@@ -83,4 +83,4 @@ Runs the specified program or command by using the specified arguments.
8383

8484
## See Also
8585
[Tasks](../msbuild/msbuild-tasks.md)
86-
[Task Reference](../msbuild/msbuild-task-reference.md)
86+
[Task Reference](../msbuild/msbuild-task-reference.md)

0 commit comments

Comments
 (0)