Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update URL for PowerShell gallery pre-release badge ([#553](https://github.com/gaelcolas/Sampler/issues/553)).
- Update azure-pipelines task PublishCodeCoverageResults to v2 ([#551](https://github.com/gaelcolas/Sampler/issues/551)).
- Updated comment-based help for Resolve-Dependency.ps1
- Moved large parts of the ReadMe to the Wiki to handle Include simple tutorials in the Wiki ([issue #487](https://github.com/gaelcolas/Sampler/issues/487))

## [0.119.0] - 2026-01-08
Expand Down
17 changes: 9 additions & 8 deletions Resolve-Dependency.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Bootstrap script for PSDepend.

.PARAMETER DependencyFile
Specifies the configuration file for the this script. The default value is
Specifies the dependency configuration file with modules for the this script. The default value is
'RequiredModules.psd1' relative to this script's path.

.PARAMETER PSDependTarget
Expand All @@ -21,7 +21,7 @@

.PARAMETER Scope
Specifies the scope to bootstrap the PackageProvider and PSGet if not available.
THe default value is 'CurrentUser'.
The default value is 'CurrentUser'.

.PARAMETER Gallery
Specifies the gallery to use when bootstrapping PackageProvider, PSGet and
Expand All @@ -32,19 +32,20 @@
Specifies the credentials to use with the Gallery specified above.

.PARAMETER AllowOldPowerShellGetModule
Allow you to use a locally installed version of PowerShellGet older than
1.6.0 (not recommended). Default it will install the latest PowerShellGet
Allows to use a locally installed version of PowerShellGet older than
1.6.0 (not recommended). By default it will install the latest PowerShellGet
if an older version than 2.0 is detected.

.PARAMETER MinimumPSDependVersion
Allow you to specify a minimum version fo PSDepend, if you're after specific
features.
Allows to specify a minimum version fo PSDepend, if specific
features required.

.PARAMETER AllowPrerelease
Not yet written.
Allows to install prerelease versions of modules when resolving dependencies.

.PARAMETER WithYAML
Not yet written.
Specifies that provided dependency configuration file is in YAML format and related operations
such as ensuring the presence of PowerShell-Yaml module should be taken.

.PARAMETER UseModuleFast
Specifies to use ModuleFast instead of PowerShellGet to resolve dependencies
Expand Down