From f9915be8278b5a465e4697a1744524efc3a673d7 Mon Sep 17 00:00:00 2001 From: Matthieu MEZIL Date: Mon, 10 Oct 2022 13:59:20 -0700 Subject: [PATCH] Documentation was incorrect. Looking at Microsoft.Build.Artifacts.Tasks.RobocopyMetadata.DestinationSplitter, only semicolon is a splitter for DestinationFolder, not space. --- src/Artifacts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Artifacts/README.md b/src/Artifacts/README.md index 29a6c650..78c77830 100644 --- a/src/Artifacts/README.md +++ b/src/Artifacts/README.md @@ -167,7 +167,7 @@ The `` items specify collections of artifacts to stage. These items | Metadata | Description | Default | | -- | -- | -- | -| `DestinationFolder` | A list of one or more paths separated by a space or semicolon to stage artifacts to | | +| `DestinationFolder` | A list of one or more paths separated by a semicolon to stage artifacts to | | | `IsRecursive` | Enables a recursive path search for artifacts to stage | `true` | | `VerifyExists` | Enables a check that the file exists before copying | `true` | | `AlwaysCopy` | Enables copies even if the destination already exists | `false` |