Skip to content

Commit 8f5338c

Browse files
committed
0.1.3 release
1 parent 4987eba commit 8f5338c

114 files changed

Lines changed: 15185 additions & 35 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

mkdocs.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ copyright: ModuleBuild is licensed under the <a href='https://github.com/zloeber
44
theme: readthedocs
55
site_name: ModuleBuild Docs
66
Pages:
7-
Index: index.md
8-
Introduction: Introduction\Introduction.md
9-
Usage:
10-
- Initialization: Usage\1 - Initialization.md
11-
- Make Your Module: Usage\2 - Make Your Module.md
12-
- Build A Release: Usage\3 - Build A Release.md
13-
- Test A Release: Usage\4 - Test A Release.md
14-
- Publish A Release: Usage\5 - Publish A Release.md
15-
- Your Next Release: Usage\6 - Your Next Release.md
16-
- Project Documentation: Usage\7 - Project Documentation.md
17-
- Special Files: Usage\8 - Special Files.md
18-
- PSModuleBuild Configuration: Usage\9 - PSModuleBuild Configuration.md
19-
- Converting to ModuleBuild: Usage\10 - Converting To ModuleBuild.md
20-
Functions:
21-
- Get-BuildEnvironment: Functions\Get-BuildEnvironment.md
22-
- Initialize-ModuleBuild: Functions\Initialize-ModuleBuild.md
23-
- Set-BuildEnvironment: Functions\Set-BuildEnvironment.md
24-
- Import-ModulePublicFunction: Functions\Import-ModulePublicFunction.md
25-
- Import-ModulePrivateFunction: Functions\Import-ModulePrivateFunction.md
26-
ToDo: ToDo.md
27-
Contributing: Contributing.md
28-
ChangeLog: ChangeLog.md
29-
Acknowledgements: Acknowledgements.md
7+
- Index: index.md
8+
- Introduction: Introduction\Introduction.md
9+
- Usage:
10+
- Initialization: Usage\1 - Initialization.md
11+
- Make Your Module: Usage\2 - Make Your Module.md
12+
- Build A Release: Usage\3 - Build A Release.md
13+
- Test A Release: Usage\4 - Test A Release.md
14+
- Publish A Release: Usage\5 - Publish A Release.md
15+
- Your Next Release: Usage\6 - Your Next Release.md
16+
- Project Documentation: Usage\7 - Project Documentation.md
17+
- Special Files: Usage\8 - Special Files.md
18+
- PSModuleBuild Configuration: Usage\9 - PSModuleBuild Configuration.md
19+
- Converting to ModuleBuild: Usage\10 - Converting To ModuleBuild.md
20+
- Functions:
21+
- Get-BuildEnvironment: Functions\Get-BuildEnvironment.md
22+
- Initialize-ModuleBuild: Functions\Initialize-ModuleBuild.md
23+
- Set-BuildEnvironment: Functions\Set-BuildEnvironment.md
24+
- Import-ModulePublicFunction: Functions\Import-ModulePublicFunction.md
25+
- Import-ModulePrivateFunction: Functions\Import-ModulePrivateFunction.md
26+
- ToDo: ToDo.md
27+
- Contributing: Contributing.md
28+
- ChangeLog: ChangeLog.md
29+
- Acknowledgements: Acknowledgements.md
3030
repo_url: https://github.com/zloeber/ModuleBuild
3131

plaster/ModuleBuild/plasterManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
templateType="Project" xmlns="http://www.microsoft.com/schemas/PowerShell/Plaster/v1">
55
<metadata>
66
<name>ModuleBuild</name>
7-
<id>9d5bf1cd-a2f5-4246-9ad2-36835fb12f92</id>
7+
<id>2c09395f-c8e8-4ddd-9f06-8c6b823ec0c2</id>
88
<version>0.0.8</version>
99
<title>New ModuleBuild Project</title>
1010
<description>Create a new PowerShell Module with a ModuleBuild wrapper</description>

release/0.1.3/ModuleBuild.psd1

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
#
2+
# Module manifest for module 'PSGet_ModuleBuild'
3+
#
4+
# Generated by: Zachary Loeber
5+
#
6+
# Generated on: 7/6/2017
7+
#
8+
9+
@{
10+
11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'ModuleBuild.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '0.1.3'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
20+
# ID used to uniquely identify this module
21+
GUID = '8f6090b4-6411-4949-a717-96d64a1cc5b3'
22+
23+
# Author of this module
24+
Author = 'Zachary Loeber'
25+
26+
# Company or vendor of this module
27+
CompanyName = 'Zachary Loeber'
28+
29+
# Copyright statement for this module
30+
Copyright = '(c) 2017 Zachary Loeber. All rights reserved.'
31+
32+
# Description of the functionality provided by this module
33+
Description = 'A scaffolding framework which can be used to kickstart a generic PowerShell module project.'
34+
35+
# Minimum version of the Windows PowerShell engine required by this module
36+
PowerShellVersion = '5.0.0'
37+
38+
# Name of the Windows PowerShell host required by this module
39+
# PowerShellHostName = ''
40+
41+
# Minimum version of the Windows PowerShell host required by this module
42+
# PowerShellHostVersion = ''
43+
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45+
# DotNetFrameworkVersion = ''
46+
47+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48+
# CLRVersion = ''
49+
50+
# Processor architecture (None, X86, Amd64) required by this module
51+
# ProcessorArchitecture = ''
52+
53+
# Modules that must be imported into the global environment prior to importing this module
54+
# RequiredModules = @()
55+
56+
# Assemblies that must be loaded prior to importing this module
57+
# RequiredAssemblies = @()
58+
59+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
60+
# ScriptsToProcess = @()
61+
62+
# Type files (.ps1xml) to be loaded when importing this module
63+
# TypesToProcess = @()
64+
65+
# Format files (.ps1xml) to be loaded when importing this module
66+
# FormatsToProcess = @()
67+
68+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
69+
# NestedModules = @()
70+
71+
# 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.
72+
FunctionsToExport = 'Get-BuildEnvironment', 'Import-ModulePrivateFunction',
73+
'Import-ModulePublicFunction', 'Initialize-ModuleBuild',
74+
'Set-BuildEnvironment'
75+
76+
# 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.
77+
CmdletsToExport = @()
78+
79+
# Variables to export from this module
80+
# VariablesToExport = @()
81+
82+
# 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.
83+
AliasesToExport = @()
84+
85+
# DSC resources to export from this module
86+
# DscResourcesToExport = @()
87+
88+
# List of all modules packaged with this module
89+
# ModuleList = @()
90+
91+
# List of all files packaged with this module
92+
# FileList = @()
93+
94+
# 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.
95+
PrivateData = @{
96+
97+
PSData = @{
98+
99+
# Tags applied to this module. These help with module discovery in online galleries.
100+
Tags = 'scaffold','Module','Invoke-Build'
101+
102+
# A URL to the license for this module.
103+
LicenseUri = 'https://github.com/zloeber/ModuleBuild/raw/master/license.md'
104+
105+
# A URL to the main website for this project.
106+
ProjectUri = 'https://github.com/zloeber/ModuleBuild'
107+
108+
# A URL to an icon representing this module.
109+
IconUri = 'https://github.com/zloeber/ModuleBuild/raw/master/src/other/powershell-project.png'
110+
111+
# ReleaseNotes of this module
112+
ReleaseNotes = '0.1.3 release'
113+
114+
# External dependent modules of this module
115+
# ExternalModuleDependencies = ''
116+
117+
} # End of PSData hashtable
118+
119+
} # End of PrivateData hashtable
120+
121+
# HelpInfo URI of this module
122+
# HelpInfoURI = ''
123+
124+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
125+
# DefaultCommandPrefix = ''
126+
127+
}
128+

0 commit comments

Comments
 (0)