From a5a9c55817a746bf21ec310afadd56ebe4db7180 Mon Sep 17 00:00:00 2001 From: Erik Mavrinac Date: Tue, 27 Feb 2024 19:12:18 -0800 Subject: [PATCH] Clarify docs on DefaultArtifactsSource for behavior change in 2.0.20 --- 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 82670826..8a5ad187 100644 --- a/src/Artifacts/README.md +++ b/src/Artifacts/README.md @@ -135,7 +135,7 @@ The following properties control artifacts staging: | Property | Description | Default | |-------------------------------------|-------------|---------| | `EnableDefaultArtifacts` | Set this to `false` to disable the default staging of the `$(OutputPath)` to the artifacts directory.| `true` | -| `DefaultArtifactsSource` | The default path to use as a source for staging artifacts. | `$(OutputPath)` | +| `DefaultArtifactsSource` | The default path to use as a source for staging artifacts. | `$(OutputPath)` if `AppendTargetFrameworkToOutputPath` is not true, otherwise the parent of `$(OutputPath)` (behavior changed in version 2.0.20). If you need the old behavior, set `AppendTargetFrameworkToOutputPath` to true, or set the property value `$(OutputPath)`. | | `ArtifactsPath` | The default path to use as a destination for staging artifacts | | | `DefaultArtifactsFileMatch` | The default filter to use for staging artifacts | `*exe *dll *exe.config` | | `DefaultArtifactsFileExclude` | The default file filter to exclude when staging artifacts | |