Skip to content

Commit f473be4

Browse files
committed
updated build
1 parent 12eb774 commit f473be4

17 files changed

+21
-30
lines changed

Build.ps1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ switch ($psCmdlet.ParameterSetName) {
103103
}
104104
}
105105
'UpdateRelease' {
106-
if ($UpdateRelease -ne $null) {
106+
if ($UpdateRelease) {
107107
try {
108108
Invoke-Build -Task UpdateRelease -NewVersion $NewVersion -ReleaseNotes $ReleaseNotes
109109
}
@@ -156,5 +156,3 @@ switch ($psCmdlet.ParameterSetName) {
156156
}
157157
}
158158
}
159-
160-

build/reports/0.3.0/CodeHealthReport-Private.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ <h1>
189189
<div class="col-sm-4 col-md-5 col-lg-4 right-header">
190190
<h5>
191191
Analyzed path :<span class="right-header-data"> src\private</span><br>
192-
Analysis date :<span class="right-header-data"> 2020-04-23 22:23:41Z</span>
192+
Analysis date :<span class="right-header-data"> 2020-04-23 22:40:27Z</span>
193193
</h5>
194194
</div>
195195
</div>

build/reports/0.3.0/CodeHealthReport-Public.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ <h1>
189189
<div class="col-sm-4 col-md-5 col-lg-4 right-header">
190190
<h5>
191191
Analyzed path :<span class="right-header-data"> src\public</span><br>
192-
Analysis date :<span class="right-header-data"> 2020-04-23 22:22:02Z</span>
192+
Analysis date :<span class="right-header-data"> 2020-04-23 22:38:22Z</span>
193193
</h5>
194194
</div>
195195
</div>

plugins/plaster/template/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>260cae24-3fcb-42bb-a049-07aac474f808</id>
7+
<id>4ca85bfc-56af-4286-b37a-093a17f94041</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>

plugins/plaster/template/scaffold/Build.template

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ switch ($psCmdlet.ParameterSetName) {
103103
}
104104
}
105105
'UpdateRelease' {
106-
if ($UpdateRelease -ne $null) {
106+
if ($UpdateRelease) {
107107
try {
108108
Invoke-Build -Task UpdateRelease -NewVersion $NewVersion -ReleaseNotes $ReleaseNotes
109109
}
@@ -156,4 +156,3 @@ switch ($psCmdlet.ParameterSetName) {
156156
}
157157
}
158158
}
159-

plugins/plaster/template/scaffold/build/docs/Additional/Contributing.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ Finally, the Function documentation gets generated automatically based on the co
1212
## Development Environment
1313
While any text editor will work well there are included task and setting json files explicitly for Visual Studio Code included with this project. The following tasks have been defined to make things a bit easier. First access the 'Pallette' (Shift+Ctrl+P or Shift+Cmd+P) and start typing in any of the following tasks to find and run them:
1414

15-
- Clean -> Cleans out your scratch folder
16-
- Build -> Runs the Build task (also can use Shift+Ctrl+B or Shift+Cmd+B)
17-
- Analyze -> Runs PSScriptAnalyzer against the src/public files.
18-
- CreateProjectHelp - Creates the project level help.
19-
- Test - Runs Pester tests.
20-
- AddMissingCBH - Analyzes the existing public functions and inserts a template CBH if no CBH already exists and saves it into your scratch folder.
15+
- Build Module -> Runs the Build task
16+
- Insert Missing Comment Based Help -> Analyzes the existing public functions and inserts a template CBH if no CBH already exists and saves it into your scratch folder.
17+
- Run Tests -> Run Pester tests
18+
- Test, Build, Install and Load Module -> Run the Test, build tasks but also install and try to load the module.

release/0.3.0/ModuleBuild.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Zachary Loeber
55
#
6-
# Generated on: 23/04/2020
6+
# Generated on: 4/23/2020
77
#
88

99
@{

release/0.3.0/plugins/plaster/template/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>260cae24-3fcb-42bb-a049-07aac474f808</id>
7+
<id>4ca85bfc-56af-4286-b37a-093a17f94041</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>

0 commit comments

Comments
 (0)