This repository was archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPowerShellTemplate.psd1
More file actions
69 lines (55 loc) · 2.71 KB
/
PowerShellTemplate.psd1
File metadata and controls
69 lines (55 loc) · 2.71 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
60
61
62
63
64
65
66
67
68
69
@{
ModuleVersion = "0.0.1"
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @()
# Functions to export. Populated by Optimize-Module during the build step.
# For best performance, do not use wildcards and do not delete this entry!
# Use an empty array if there is nothing to export.
FunctionsToExport = @()
# Cmdlets to export.
# For best performance, do not use wildcards and do not delete this entry!
# Use an empty array if there is nothing to export.
CmdletsToExport = @()
# Aliases to export.
# For best performance, do not use wildcards and do not delete this entry!
# Use an empty array if there is nothing to export.
AliasesToExport = @()
# Variables to export.
# For best performance, do not use wildcards and do not delete this entry!
# Use an empty array if there is nothing to export.
VariablesToExport = @()
# ID used to uniquely identify this module
GUID = 'af8481bc-5027-4bbf-a8bf-42ccadd4c885'
Description = 'The Questionmark PowerShell Template Module'
# The main script or binary module that is automatically loaded as part of this module
RootModule = 'PowerShellTemplate.psm1'
# Common stuff for all our modules:
CompanyName = 'Questionmark Computing Limited'
Author = 'Team Forge'
Copyright = "Copyright 2018 Questionmark Computing Limited"
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
# Minimum version of the .NET Framework required by this module
DotNetFrameworkVersion = '4.0'
# Minimum version of the common language runtime (CLR) required by this module
CLRVersion = '4.0.30319'
# PrivateData gets passed to the module at runtime, but is required for publishing with PowerShellGet and building with ModuleBuilder.
PrivateData = @{
# Settings for publishing to the PowerShell gallery:
PSData = @{
# Pre-release suffix (like "Beta001"). Don't comment out because ModuleBuilder needs it
Prerelease = ""
# Optional release notes Don't comment out because ModuleBuilder needs it
ReleaseNotes = '
'
# Optional tags for module discovery.
# Tags = @()
# A URL to the license for this module
# LicenseUri = ''
# A URL to the main website for this project.
# ProjectUri = ''
# A URL to an icon representing this module.
# IconUri = ''
}
}
}