You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ModuleBuildToolsTemp.psd1
+6-14Lines changed: 6 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ ModuleVersion = '0.0.8'
18
18
# CompatiblePSEditions = @()
19
19
20
20
# ID used to uniquely identify this module
21
-
GUID='c93e4433-f934-4406-8cd7-b96ec67cc04b'
21
+
GUID='79365040-e2e9-4c74-aba1-c9e635e68ccd'
22
22
23
23
# Author of this module
24
24
Author='Justin Perdok'
@@ -30,7 +30,7 @@ CompanyName = ' '
30
30
Copyright='(c) 2020 . All rights reserved.'
31
31
32
32
# Description of the functionality provided by this module
33
-
Description='Builder tools for the ModuleBuild project'
33
+
Description='ModuleBuildToolsTemp'
34
34
35
35
# Minimum version of the Windows PowerShell engine required by this module
36
36
# PowerShellVersion = ''
@@ -75,7 +75,7 @@ FunctionsToExport = '*'
75
75
CmdletsToExport='*'
76
76
77
77
# Variables to export from this module
78
-
#VariablesToExport = @()
78
+
VariablesToExport=@()
79
79
80
80
# 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.
81
81
AliasesToExport=@()
@@ -95,7 +95,7 @@ PrivateData = @{
95
95
PSData=@{
96
96
97
97
# Tags applied to this module. These help with module discovery in online galleries.
FunctionTemplates="src\templates"# Location of function template files (*.tem)
62
62
63
63
# If you will be publishing to the PowerShell Gallery you will need a Nuget API key (can get from the website)
64
-
# You should NOT enter this key here but rather manually enter it in the ModuleBuildToolsTemp.buildenvironment.json file with: Set-MBTBuildEnvironment -NugetAPIKey '<key>'
64
+
# You should NOT enter this key here but rather manually enter it in the ModuleBuildToolsTemp.buildenvironment.json file with: Set-MBBuildEnvironment -NugetAPIKey '<key>'
Copy file name to clipboardExpand all lines: build/docs/Additional/Contributing.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,8 @@ Finally, the Function documentation gets generated automatically based on the co
12
12
## Development Environment
13
13
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:
14
14
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.
0 commit comments