Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
55 lines (42 loc) · 2.33 KB

File metadata and controls

55 lines (42 loc) · 2.33 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
@{
# 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 = '
Add Script Generators and convert our Move-UsingStatement and Update-AliasesToExport to generators
Add Merge-ScriptBlock and Add-Parameter generators to support extracting more common boilerplate code
'
# 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/main/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/main/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')
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.