-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewModuleTemplate.psd1
More file actions
54 lines (46 loc) · 1.61 KB
/
Copy pathNewModuleTemplate.psd1
File metadata and controls
54 lines (46 loc) · 1.61 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
#
# Module manifest for module 'New-ModuleTemplate'
@{
RootModule = 'NewModuleTemplate.psm1'
ModuleVersion = '1.1.0'
GUID = 'cd7818d1-6b04-4bb5-a644-3a28e7d6db77'
Author = 'Kael Sterling'
CompanyName = 'Untapped Technologies'
Description = 'Module scaffolding generator'
CompatiblePSEditions = 'Core', 'Desktop'
PowerShellVersion = '5.1'
FunctionsToExport = @(
'Initialize-GitRepository',
'New-AnalyzerSettings',
'New-BuildScript',
'New-DocumentationScripts',
'New-ModuleChangelog',
'New-ModuleFolders',
'New-ModuleLoader',
'New-ModuleManifestFile',
'New-ModuleReadme',
'New-ModuleTemplate',
'New-PesterTests',
'New-PublishScript'
)
FileList = @(
'NewModuleTemplate.psm1',
'NewModuleTemplate.psd1',
'Public',
'Private'
)
AliasesToExport = @()
CmdletsToExport = @()
DscResourcesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('PowerShell', 'Module', 'Scaffolding', 'Generator', 'Template')
LicenseUri = 'https://opensource.org/licenses/MIT'
ProjectUri = 'https://github.com/UntappedTech/NewModuleTemplate'
IconUri = 'https://raw.githubusercontent.com/UntappedTech/NewModuleTemplate/main/icon.svg'
ReleaseNotes = 'Initial release.'
}
}
RequiredModules = @()
Copyright = 'Copyright (c) 2026 Kael Sterling'
}