Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify docs on DefaultArtifactsSource for behavior change in 2.0.20 #534

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Artifacts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<DefaultArtifactsSource>$(OutputPath)</DefaultArtifactsSource>`. |
| `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 | |
Expand Down