Skip to content

Commit 13fac00

Browse files
committed
Added PSData hashtable
1 parent cf6cd63 commit 13fac00

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

PSServiceNow.psd1

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,23 @@ FunctionsToExport = '*'
8080
# List of all files packaged with this module
8181
# FileList = @()
8282

83-
# Private data to pass to the module specified in RootModule/ModuleToProcess
84-
# PrivateData = ''
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 = @('Azure','Automation','ServiceNow')
90+
91+
# A URL to the license for this module.
92+
LicenseUri = 'https://github.com/Sam-Martin/servicenow-powershell/blob/master/LICENSE'
93+
94+
# A URL to the main website for this project.
95+
ProjectUri = 'https://github.com/Sam-Martin/servicenow-powershell'
96+
97+
} # End of PSData hashtable
98+
99+
} # End of PrivateData hashtable
85100

86101
# HelpInfo URI of this module
87102
# HelpInfoURI = 'https://github.com/Sam-Martin/servicenow-powershell'

0 commit comments

Comments
 (0)