-
Notifications
You must be signed in to change notification settings - Fork 0
/
pwsh-module-ext.psd1
24 lines (24 loc) · 1.1 KB
/
pwsh-module-ext.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
@{
ModuleToProcess = 'pwsh-module-ext.psm1'
ModuleVersion = '0.0.1'
CompatiblePSEditions = @('Core')
GUID = '02bc1650-e68a-45f5-98aa-64703ad31ece'
Author = 'Ser-Drephs and contributors'
CompanyName = '-'
Copyright = '(c) Ser-Drephs and contributors.'
Description = 'Provides convenience functions for creating and building complete powershell modules.'
PowerShellVersion = '7.0.0'
FunctionsToExport = @('Compress-Module','New-ModuleStructure')
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('pwsh module')
LicenseUri = 'https://github.com/ser-drephs/pwsh-module-pack/blob/main/LICENSE'
ProjectUri = 'https://github.com/ser-drephs/pwsh-module-pack'
ReleaseNotes = 'https://github.com/ser-drephs/pwsh-module-pack/blob/main/CHANGELOG.md'
RequireLicenseAcceptance = $false
}
}
}