-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
PSReleaseTools.psd1
41 lines (32 loc) · 3.77 KB
/
PSReleaseTools.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Module manifest for module 'PSReleaseTools'
#
@{
RootModule = 'PSReleaseTools.psm1'
ModuleVersion = '1.12.0'
CompatiblePSEditions = @("Desktop", "Core")
GUID = 'f7afa9bf-3f74-45e8-b855-0810431aafb4'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2017-2022 JDH Information Technology Solutions, Inc. All rights reserved.'
Description = 'A set of commands for working with PowerShell 7 and later releases.'
PowerShellVersion = '5.1'
TypesToProcess = @()
FormatsToProcess = @('formats\githubissue.format.ps1xml', 'formats\psreleasestatus.format.ps1xml')
FunctionsToExport = 'Get-PSReleaseSummary', 'Get-PSReleaseAsset', 'Save-PSReleaseAsset',
'Get-PSReleaseCurrent', 'Install-PSPreview', 'Install-PowerShell', 'Get-PSIssue', 'Get-PSIssueLabel',
'Open-PSIssue'
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = 'Install-PSCore'
# 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.
PrivateData = @{
PSData = @{
Tags = @("GitHub", "Linux", "Mac", "PSCore", "Core", "PowerShell7", "PS7", "PowerShell")
LicenseUri = 'https://github.com/jdhitsolutions/PSReleaseTools/blob/master/LICENSE.txt'
ProjectUri = 'https://github.com/jdhitsolutions/PSReleaseTools'
IconUri = 'https://raw.githubusercontent.com/jdhitsolutions/PSReleaseTools/master/images/ps_black_32x32.ico'
ReleaseNotes = 'https://github.com/jdhitsolutions/PSReleaseTools/blob/master/README.md'
} # End of PSData hashtable
} # End of PrivateData hashtable
}