Skip to content

Commit b1eb911

Browse files
committed
Incorporated PR#12 that wouldn't have merged
1 parent 6cbf93e commit b1eb911

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

PoshServiceNow/PoshServiceNow.psd1

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,31 @@ FunctionsToExport = @('Get-ServiceNowChangeRequest','Get-ServiceNowConfiguration
7474
# List of all files packaged with this module
7575
# FileList = @()
7676

77-
# Private data to pass to the module specified in RootModule/ModuleToProcess
78-
# PrivateData = ''
77+
# 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.
78+
PrivateData = @{
79+
80+
PSData = @{
81+
82+
# Tags applied to this module. These help with module discovery in online galleries.
83+
Tags = @('Azure','Automation','ServiceNow','PSModule')
84+
85+
# A URL to the license for this module.
86+
LicenseUri = 'https://github.com/Sam-Martin/servicenow-powershell/blob/master/LICENSE'
87+
88+
# A URL to the main website for this project.
89+
ProjectUri = 'https://github.com/Sam-Martin/servicenow-powershell'
90+
91+
} # End of PSData hashtable
92+
93+
} # End of PrivateData hashtable
7994

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

8398
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
8499
# DefaultCommandPrefix = ''
85100

101+
86102
}
87103

88104

8 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)