Skip to content

Commit 140c199

Browse files
authored
Merge pull request #203 from bganapa/psdata-fix
Fixing PSData section in Azs.Deployment.Admin and Az.BootStrapper
2 parents 363e082 + 68b0341 commit 140c199

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

src/Az.BootStrapper/Module/Az.BootStrapper.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ PrivateData = @{
110110
Tags = 'Azure','Az','AzureStack','PSModule','Profile','ResourceManager'
111111

112112
# A URL to the license for this module.
113-
# LicenseUri = ''
113+
LicenseUri = 'https://aka.ms/azps-license'
114114

115115
# A URL to the main website for this project.
116-
# ProjectUri = ''
116+
ProjectUri = 'https://github.com/Azure/azurestack-powershell'
117117

118118
# A URL to an icon representing this module.
119119
# IconUri = ''

src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,14 @@ AliasesToExport = @()
8686
# FileList = @()
8787

8888
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
89-
PrivateData = @{
90-
Prerelease = 'preview'
91-
Tags = 'AzureStack', 'ResourceManager', 'ARM', 'PSModule', 'DeploymentResourceProvider'
92-
LicenseUri = 'https://aka.ms/azps-license'
93-
ProjectUri = 'https://github.com/Azure/azurestack-powershell'
94-
ReleaseNotes = 'AzureStack Hub Admin module - see https://aka.ms/azpshmigration for breaking changes'
89+
PrivateData = @{
90+
PSData = @{
91+
Prerelease = 'preview'
92+
Tags = 'AzureStack', 'ResourceManager', 'ARM', 'PSModule', 'DeploymentResourceProvider'
93+
LicenseUri = 'https://aka.ms/azps-license'
94+
ProjectUri = 'https://github.com/Azure/azurestack-powershell'
95+
ReleaseNotes = 'AzureStack Hub Admin module - see https://aka.ms/azpshmigration for breaking changes'
96+
}
9597
}
9698

9799
# HelpInfo URI of this module

src/AzureStack/AzureStack.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
# IconUri = ''
126126

127127
# ReleaseNotes of this module
128-
ReleaseNotes = 'Version 2.0.0'
128+
ReleaseNotes = 'Version 2.0.0, Requires AzureStack Update 2002+, Please refer https://aka.ms/azpshmigration for breaking changes'
129129

130130
# Preview version
131131
Prerelease = 'preview'

0 commit comments

Comments
 (0)