-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathModuleBuilder.psd1
More file actions
54 lines (41 loc) · 2.19 KB
/
ModuleBuilder.psd1
File metadata and controls
54 lines (41 loc) · 2.19 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
@{
# The module version should be SemVer.org compatible
ModuleVersion = "0.0.0"
# PrivateData is where all third-party metadata goes
PrivateData = @{
# PrivateData.PSData is the PowerShell Gallery data
PSData = @{
# Prerelease string should be here, so we can set it
Prerelease = 'source'
# Release Notes have to be here, so we can update them
ReleaseNotes = '
Fix case sensitivity of defaults for SourceDirectories and PublicFilter
'
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'Authoring','Build','Development','BestPractices'
# A URL to the license for this module.
LicenseUri = 'https://github.com/PoshCode/ModuleBuilder/blob/master/LICENSE'
# A URL to the main website for this project.
ProjectUri = 'https://github.com/PoshCode/ModuleBuilder'
# A URL to an icon representing this module.
IconUri = 'https://github.com/PoshCode/ModuleBuilder/blob/resources/ModuleBuilder.png?raw=true'
} # End of PSData
} # End of PrivateData
# The main script module that is automatically loaded as part of this module
RootModule = 'ModuleBuilder.psm1'
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @('Configuration')
# Always define FunctionsToExport as an empty @() which will be replaced on build
FunctionsToExport = @()
AliasesToExport = @()
# ID used to uniquely identify this module
GUID = '4775ad56-8f64-432f-8da7-87ddf7a34653'
Description = 'A module for authoring and building PowerShell modules'
# Common stuff for all our modules:
CompanyName = 'PoshCode'
Author = 'Joel Bennett'
Copyright = "Copyright 2018 Joel Bennett"
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
CompatiblePSEditions = @('Core','Desktop')
}