Skip to content

Commit 80bd225

Browse files
committed
0.0.4 updates
1 parent 8a9a6c4 commit 80bd225

116 files changed

Lines changed: 13558 additions & 17 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.

ModuleBuild.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'ModuleBuild.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.0.3'
15+
ModuleVersion = '0.0.4'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

plaster/ModuleBuild/plasterManifest.xml

Lines changed: 3 additions & 3 deletions
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>88efa09b-4ca2-4851-9186-7e6ac12fe75e</id>
7+
<id>1198ffce-a6dc-4aa5-9257-aaf3b2397e37</id>
88
<version>0.0.1</version>
99
<title>New ModuleBuild Project</title>
1010
<description>Create a new PowerShell Module with a ModuleBuild wrapper</description>
@@ -190,8 +190,8 @@
190190
source="scaffold\tests\*"
191191
destination="src\tests" />
192192
<file
193-
source="scaffold\build\shutdown\*"
194-
destination="build\shutdown" />
193+
source="scaffold\build\cleanup\*"
194+
destination="build\cleanup" />
195195
<file
196196
source="scaffold\build\startup\*"
197197
destination="build\startup" />

plaster/PlasterContent.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ $Content = @(
5454
},
5555
@{
5656
ContentType = 'file'
57-
Source = 'scaffold\build\shutdown\*'
58-
Destination = 'build\shutdown'
57+
Source = 'scaffold\build\cleanup\*'
58+
Destination = 'build\cleanup'
5959
},
6060
@{
6161
ContentType = 'file'

release/0.0.4/ModuleBuild.psd1

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
#
2+
# Module manifest for module 'PSGet_ModuleBuild'
3+
#
4+
# Generated by: Zachary Loeber
5+
#
6+
# Generated on: 6/12/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.0.4'
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 = ''
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', 'Initialize-ModuleBuild',
73+
'Set-BuildEnvironment'
74+
75+
# 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.
76+
CmdletsToExport = @()
77+
78+
# Variables to export from this module
79+
# VariablesToExport = @()
80+
81+
# 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.
82+
AliasesToExport = @()
83+
84+
# DSC resources to export from this module
85+
# DscResourcesToExport = @()
86+
87+
# List of all modules packaged with this module
88+
# ModuleList = @()
89+
90+
# List of all files packaged with this module
91+
# FileList = @()
92+
93+
# 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.
94+
PrivateData = @{
95+
96+
PSData = @{
97+
98+
# Tags applied to this module. These help with module discovery in online galleries.
99+
Tags = 'scaffold','Module','Invoke-Build'
100+
101+
# A URL to the license for this module.
102+
LicenseUri = 'https://github.com/zloeber/ModuleBuild/raw/master/license.md'
103+
104+
# A URL to the main website for this project.
105+
ProjectUri = 'https://github.com/zloeber/ModuleBuild'
106+
107+
# A URL to an icon representing this module.
108+
IconUri = 'https://github.com/zloeber/ModuleBuild/raw/master/src/other/powershell-project.png'
109+
110+
# ReleaseNotes of this module
111+
ReleaseNotes = '0.0.3 module updates'
112+
113+
# External dependent modules of this module
114+
# ExternalModuleDependencies = ''
115+
116+
} # End of PSData hashtable
117+
118+
} # End of PrivateData hashtable
119+
120+
# HelpInfo URI of this module
121+
# HelpInfoURI = ''
122+
123+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
124+
# DefaultCommandPrefix = ''
125+
126+
}
127+

0 commit comments

Comments
 (0)