Skip to content

Commit ab7fbcc

Browse files
committed
Add note about NuGetv3 protocol limitation for dependencies
1 parent d4cf07e commit ab7fbcc

19 files changed

+31
-22
lines changed

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Compress-PSResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/compress-psresource?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Find-PSResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/find-psresource?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-InstalledPSResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/get-installedpsresource?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-PSResourceRepository.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/get-psresourcerepository?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Get-PSScriptFileInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/get-psscriptfileinfo?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Import-PSGetRepository.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/import-psgetrepository?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Install-PSResource.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
5-
ms.date: 10/31/2024
4+
ms.custom: 1.1.0
5+
ms.date: 03/17/2025
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/install-psresource?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
---
@@ -64,16 +64,25 @@ This cmdlet combines the functions of the `Install-Module` and `Install-Script`
6464
import the new version or start a new session to use the updated module. For more information, see
6565
[Import-Module](xref:Microsoft.PowerShell.Core.Import-Module).
6666

67+
> [!NOTE]
68+
> `Install-PSResource` doesn't install dependent resources from repositories that use the NuGet v3
69+
> protocol. You must install the dependent resources individually. We intend to add this feature in
70+
> a future release.
71+
6772
## EXAMPLES
6873

6974
### Example 1
7075

71-
Installs the latest stable (non-prerelease) version of the **Az** module.
76+
Installs the latest stable (non-prerelease) version of the **Az** module from the PowerShell
77+
Gallery.
7278

7379
```powershell
74-
Install-PSResource Az
80+
Install-PSResource Az -Repository PSGallery
7581
```
7682

83+
The Az module is a meta-module that includes all the Az PowerShell modules as dependencies. This
84+
command installs the Az module and all its dependencies.
85+
7786
### Example 2
7887

7988
Installs the latest stable **Az** module within the between versions `7.3.0` and `8.3.0`.

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Microsoft.PowerShell.PSResourceGet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Help Version: 3.0.24260
44
Locale: en-US
55
Module Guid: e4e0bda1-0703-44a5-b70d-8fe704cd0643
66
Module Name: Microsoft.PowerShell.PSResourceGet
7-
ms.custom: 1.1.0-rc2
7+
ms.custom: 1.1.0
88
ms.date: 10/31/2024
99
schema: 2.0.0
1010
title: Microsoft.PowerShell.PSResourceGet

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/New-PSScriptFileInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/new-psscriptfileinfo?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

powershell-gallery/powershellget-3.x/Microsoft.PowerShell.PSResourceGet/Publish-PSResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.PowerShell.PSResourceGet.dll-Help.xml
33
Module Name: Microsoft.PowerShell.PSResourceGet
4-
ms.custom: 1.1.0-rc2
4+
ms.custom: 1.1.0
55
ms.date: 10/31/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/publish-psresource?view=powershellget-3.x&WT.mc_id=ps-gethelp
77
schema: 2.0.0

0 commit comments

Comments
 (0)