Skip to content

Commit 23e8b67

Browse files
authored
Merge pull request #46 from dmilov/topic/add-project-uri
chore: Add Project URI in the module manifest
2 parents eda44f4 + c8b5958 commit 23e8b67

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

src/CloudEventsPowerShell/CloudEvents.Sdk.psd1

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
RootModule = 'CloudEvents.Sdk.psm1'
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.3.1'
12+
ModuleVersion = '0.3.2'
1313

1414
# Supported PSEditions
1515
CompatiblePSEditions = @('Core')
@@ -80,5 +80,38 @@ VariablesToExport = '*'
8080
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
8181
AliasesToExport = @()
8282

83+
# 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.
84+
PrivateData = @{
85+
86+
PSData = @{
87+
88+
# Tags applied to this module. These help with module discovery in online galleries.
89+
Tags = 'CloudEvents','SDK'
90+
91+
# A URL to the license for this module.
92+
# LicenseUri = ''
93+
94+
# A URL to the main website for this project.
95+
ProjectUri = 'https://github.com/cloudevents/sdk-powershell'
96+
97+
# A URL to an icon representing this module.
98+
# IconUri = ''
99+
100+
# ReleaseNotes of this module
101+
# ReleaseNotes = ''
102+
103+
# Prerelease string of this module
104+
# Prerelease = ''
105+
106+
# Flag to indicate whether the module requires explicit user acceptance for install/update
107+
# RequireLicenseAcceptance = $false
108+
109+
# External dependent modules of this module
110+
# ExternalModuleDependencies = @()
111+
112+
} # End of PSData hashtable
113+
114+
} # End of PrivateData hashtable
115+
83116
}
84117

0 commit comments

Comments
 (0)