diff --git a/help/Find-PSResource.md b/help/Find-PSResource.md index 9c0f8b892..cac8dfa5b 100644 --- a/help/Find-PSResource.md +++ b/help/Find-PSResource.md @@ -207,8 +207,16 @@ Accept wildcard characters: False ``` ### -Version -Specifies the version of the resource to be returned. -Expected version/version range format is documented here: https://docs.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges +Specifies the version of the resource to be returned. The value can be an exact version or a version +range using the NuGet versioning syntax. + +For more information about NuGet version ranges, see [Package versioning](/nuget/concepts/package-versioning#version-ranges) + +PowerShellGet supports all but the _minimum inclusive version_ listed in the NuGet version range +documentation. So inputting "1.0.0.0" as the version doesn't yield versions 1.0.0.0 and higher +(minimum inclusive range). Instead, the values is considered as the required version and yields +version 1.0.0.0 only (required version). To use the minimum inclusive range, provide `[1.0.0.0, ]` as +the version range. ```yaml Type: System.String diff --git a/help/Get-InstalledPSResource.md b/help/Get-InstalledPSResource.md index d5b320ab1..0b1d784bd 100644 --- a/help/Get-InstalledPSResource.md +++ b/help/Get-InstalledPSResource.md @@ -89,9 +89,16 @@ Accept wildcard characters: False ``` ### -Version -Specifies the version of the resource to be returned. -Can be an exact version or a version range, using the NuGet versioning syntax. -Expected version/version range format is documented here: https://docs.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges +Specifies the version of the resource to be returned. The value can be an exact version or a version +range using the NuGet versioning syntax. + +For more information about NuGet version ranges, see [Package versioning](/nuget/concepts/package-versioning#version-ranges) + +PowerShellGet supports all but the _minimum inclusive version_ listed in the NuGet version range +documentation. So inputting "1.0.0.0" as the version doesn't yield versions 1.0.0.0 and higher +(minimum inclusive range). Instead, the values is considered as the required version and yields +version 1.0.0.0 only (required version). To use the minimum inclusive range, provide `[1.0.0.0, ]` as +the version range. ```yaml Type: System.String diff --git a/help/Install-PSResource.md b/help/Install-PSResource.md index 47765a5f2..ddecc1257 100644 --- a/help/Install-PSResource.md +++ b/help/Install-PSResource.md @@ -72,9 +72,16 @@ Accept wildcard characters: False ``` ### -Version -Specifies the version of the resource to be installed. -Can be an exact version or a version range, using the NuGet versioning syntax. -Expected version/version range format is documented here: https://docs.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges +Specifies the version of the resource to be installed. The value can be an exact version or a version +range using the NuGet versioning syntax. + +For more information about NuGet version ranges, see [Package versioning](/nuget/concepts/package-versioning#version-ranges) + +PowerShellGet supports all but the _minimum inclusive version_ listed in the NuGet version range +documentation. So inputting "1.0.0.0" as the version doesn't yield versions 1.0.0.0 and higher +(minimum inclusive range). Instead, the values is considered as the required version and yields +version 1.0.0.0 only (required version). To use the minimum inclusive range, provide `[1.0.0.0, ]` as +the version range. ```yaml Type: System.String diff --git a/help/Save-PSResource.md b/help/Save-PSResource.md index ca6ae0889..44d7f90a5 100644 --- a/help/Save-PSResource.md +++ b/help/Save-PSResource.md @@ -66,9 +66,16 @@ Accept wildcard characters: False ``` ### -Version -Specifies the version of the resource to be saved. -Can be an exact version or a version range, using the NuGet versioning syntax. -Expected version/version range format is documented here: https://docs.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges +Specifies the version of the resource to be saved. The value can be an exact version or a version +range using the NuGet versioning syntax. + +For more information about NuGet version ranges, see [Package versioning](/nuget/concepts/package-versioning#version-ranges) + +PowerShellGet supports all but the _minimum inclusive version_ listed in the NuGet version range +documentation. So inputting "1.0.0.0" as the version doesn't yield versions 1.0.0.0 and higher +(minimum inclusive range). Instead, the values is considered as the required version and yields +version 1.0.0.0 only (required version). To use the minimum inclusive range, provide `[1.0.0.0, ]` as +the version range. ```yaml Type: System.String diff --git a/help/Update-PSResource.md b/help/Update-PSResource.md index 8ee64d319..238abfb6e 100644 --- a/help/Update-PSResource.md +++ b/help/Update-PSResource.md @@ -169,8 +169,16 @@ Accept wildcard characters: False ``` ### -Version -Specifies the version the resource is to be updated to. -Expected version/version range format is documented here: https://docs.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges +Specifies the version of the resource to be updated to. The value can be an exact version or a version +range using the NuGet versioning syntax. + +For more information about NuGet version ranges, see [Package versioning](/nuget/concepts/package-versioning#version-ranges) + +PowerShellGet supports all but the _minimum inclusive version_ listed in the NuGet version range +documentation. So inputting "1.0.0.0" as the version doesn't yield versions 1.0.0.0 and higher +(minimum inclusive range). Instead, the values is considered as the required version and yields +version 1.0.0.0 only (required version). To use the minimum inclusive range, provide `[1.0.0.0, ]` as +the version range. ```yaml Type: System.String