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
12 changes: 10 additions & 2 deletions help/Find-PSResource.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 10 additions & 3 deletions help/Get-InstalledPSResource.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 10 additions & 3 deletions help/Install-PSResource.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 10 additions & 3 deletions help/Save-PSResource.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 10 additions & 2 deletions help/Update-PSResource.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down