From 7482b1f4949e285c036c3de006d9ff27e5640aaf Mon Sep 17 00:00:00 2001 From: peekagrub <25369813+peekagrub@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:10:04 +0100 Subject: [PATCH] Fix typo in DestinationFolder parameter description --- docs/msbuild/downloadfile-task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/msbuild/downloadfile-task.md b/docs/msbuild/downloadfile-task.md index c103f6c869b..b636e7cfab8 100644 --- a/docs/msbuild/downloadfile-task.md +++ b/docs/msbuild/downloadfile-task.md @@ -35,7 +35,7 @@ The following table describes the parameters of the `DownloadFile` task. |Parameter|Description| |---------------|-----------------| |`DestinationFileName`|Optional parameter

The name to use for the downloaded file. By default, the file name is derived from the `SourceUrl` or the remote server.| -|`DestinationFolder`|Required parameter.

Specifies the destination folder to download the file to. If folder is created if it does not exist.| +|`DestinationFolder`|Required parameter.

Specifies the destination folder to download the file to. The folder is created if it does not exist.| |`DownloadedFile`|Optional output parameter.

Specifies the file that was downloaded.| |`Retries`|Optional `Int32` parameter.

Specifies how many times to attempt to download, if all previous attempts have failed. Defaults to zero.| |`RetryDelayMilliseconds`|Optional `Int32` parameter.

Specifies the delay in milliseconds between any necessary retries. Defaults to 5000.|