-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathTemplateModule.psd1
More file actions
59 lines (41 loc) · 1.82 KB
/
TemplateModule.psd1
File metadata and controls
59 lines (41 loc) · 1.82 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
54
55
56
57
58
59
#
# Module manifest for module 'TemplateModule'
#
@{
# Version number of this module.
ModuleVersion = '1.0'
# ID used to uniquely identify this module
GUID = '42225364-811c-47de-8828-54f79d0aa599'
# Author of this module
Author = 'Microsoft Corporation'
# Company or vendor of this module
CompanyName = 'Microsoft Corporation'
# Copyright statement for this module
Copyright = '(c) 2016 Microsoft Corporation. All rights reserved.'
# Description of the functionality provided by this module
Description = 'Provides an example module which contains a Plaster template'
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @()
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @()
# Variables to export from this module
VariablesToExport = '*'
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @()
# List of all files packaged with this module
# FileList = @()
# 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 = @{
Extensions = @(
@{
Module = "Plaster"
MinimumVersion = "0.3.0"
Details = @{
TemplatePaths = @("TemplateOne", "TemplateTwo")
}
}
)
} # End of PSData hashtable
} # End of PrivateData hashtable
}