8000 update: change all URLs to new org url, update assertion to attempt b… by zloeber · Pull Request #23 · ModuleBuild/ModuleBuild · GitHub
[go: up one dir, main page]

Skip to content

update: change all URLs to new org url, update assertion to attempt b… #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .vscode/modulebuilddevelopment.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"folders": [
{
"path": ".."
}
],
"settings": {
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1"
}
}
16 changes: 8 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"command": "powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File ${workspaceRoot}\\Build.ps1 -BuildModule"
},
"linux": {
"command": "/usr/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -BuildModule"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -BuildModule"
},
"osx": {
"command": "/usr/local/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -BuildModule"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -BuildModule"
},
"group": {
"kind": "build",
Expand All @@ -39,10 +39,10 @@
"command": "powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File ${workspaceRoot}\\Build.ps1 -Test"
},
"linux": {
"command": "/usr/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -Test"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -Test"
},
"osx": {
"command": "/usr/local/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -Test"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -Test"
},
"group": {
"kind": "build",
Expand All @@ -60,10 +60,10 @@
"command": "powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File ${workspaceRoot}\\Build.ps1 -TestBuildAndInstallModule"
},
"linux": {
"command": "/usr/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -TestBuildAndInstallModule"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -TestBuildAndInstallModule"
},
"osx": {
"command": "/usr/local/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -TestBuildAndInstallModule"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -TestBuildAndInstallModule"
},
"group": {
"kind": "build",
Expand All @@ -81,10 +81,10 @@
"command": "powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File ${workspaceRoot}\\Build.ps1 -AddMissingCBH"
},
"linux": {
"command": "/usr/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -AddMissingCBH"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -AddMissingCBH"
},
"osx": {
"command": "/usr/local/bin/powershell -NoProfile -File ${workspaceRoot}\\Build.ps1 -AddMissingCBH"
"command": "pwsh -NoProfile -File ${workspaceRoot}/Build.ps1 -AddMissingCBH"
},
"group": {
"kind": "build",
Expand Down
4 changes: 2 additions & 2 deletions Install.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Run this in an administrative PowerShell prompt to install the ModuleBuild PowerShell module:
#
# iex (New-Object Net.WebClient).DownloadString("https://github.com/zloeber/ModuleBuild/raw/master/Install.ps1")
# iex (New-Object Net.WebClient).DownloadString("https://github.com/ModuleBuild/ModuleBuild/raw/master/Install.ps1")

# Some general variables
$ModuleName = 'ModuleBuild'
$DownloadURL = 'https://github.com/zloeber/ModuleBuild/raw/master/release/ModuleBuild-current.zip'
$DownloadURL = 'https://github.com/ModuleBuild/ModuleBuild/raw/master/release/ModuleBuild-current.zip'

# Download and install the module
$webclient = New-Object System.Net.WebClient
Expand Down
4 changes: 2 additions & 2 deletions ModuleBuild.build.ps1
2934
F438
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if ($Script:BuildEnv.OptionTranscriptEnabled) {
#Synopsis: Validate system requirements are met
task ValidateRequirements {
Write-Description White 'Validating System Requirements for Build' -accent
assert ($PSVersionTable.PSVersion.Major.ToString() -eq '5') 'Powershell 5 is required for this build to function properly (you can comment this assert out if you are able to work around this requirement)'
assert ($PSVersionTable.PSVersion.Major.ToString() -ge '5') 'Powershell 5 or greater is required for this build to function properly.'
}

# Synopsis: Run pre-build scripts (such as other builds)
Expand All @@ -59,7 +59,7 @@ task PreBuildTasks {
$BuildToolPath = Join-Path $BuildRoot $Script:BuildEnv.BuildToolFolder
$PreBuildPath = Join-Path $BuildToolPath 'startup'
# Dot source any pre build scripts.
Get-ChildItem -Path $PreBuildPath -Recurse -Filter "*.ps1" -File | Foreach {
Get-ChildItem -Path $PreBuildPath -Recurse -Filter "*.ps1" -File | ForEach-Object {
Write-Description White "Dot sourcing pre-build script file: $($_.Name)" -level 2
. $_.FullName
}
Expand Down
6 changes: 3 additions & 3 deletions ModuleBuild.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ PrivateData = @{
Tags = 'scaffold','Module','Invoke-Build'

# A URL to the license for this module.
LicenseUri = 'https://github.com/zloeber/ModuleBuild/raw/master/LICENSE.md'
LicenseUri = 'https://github.com/ModuleBuild/ModuleBuild/raw/master/LICENSE.md'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/zloeber/ModuleBuild'
ProjectUri = 'https://github.com/ModuleBuild/ModuleBuild'

# A URL to an icon representing this module.
IconUri = 'https://github.com/zloeber/ModuleBuild/raw/master/src/other/powershell-project.png'
IconUri = 'https://github.com/ModuleBuild/ModuleBuild/raw/master/src/other/powershell-project.png'

# ReleaseNotes of this module
ReleaseNotes = '0.3.1 release'
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Powershell Gallery (PS 5.0, Preferred method)
`install-module ModuleBuild -Scope:CurrentUser`

Manual Installation
`iex (New-Object Net.WebClient).DownloadString("https://github.com/zloeber/ModuleBuild/raw/master/Install.ps1")`
`iex (New-Object Net.WebClient).DownloadString("https://github.com/ModuleBuild/ModuleBuild/raw/master/Install.ps1")`

Or clone this repository to your local machine, extract, go to the .\releases\ModuleBuild directory
and import the module to your session to test, but not install this module.
Expand Down Expand Up @@ -53,14 +53,16 @@ Studio Code and ensure that the PowerShell extension is installed.
* [Visual Studio Code](https://code.visualstudio.com/)
* [PowerShell Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell)

More contributing information can be found [here](https://github.com/zloeber/ModuleBuild/blob/master/docs/Contributing.md).
More contributing information can be found [here](https://github.com/ModuleBuild/ModuleBuild/blob/master/docs/Contributing.md).

This module is tested with the PowerShell testing framework Pester. To run all tests, just start the included build script with the test param `.\Build.ps1 -test`.

## Other Information
## Authors

- [Zachary Loeber](https://github.com/zloeber)

**Authors:**
- [Zachary Loeber](https://www.the-little-things.net)
- [Justin Perdok](https://github.com/justin-p)

**Website:** https://github.com/zloeber/ModuleBuild
## Links

[Website](https://github.com/ModuleBuild/ModuleBuild)
4 changes: 2 additions & 2 deletions build/ModuleBuild.buildenvironment.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ if ((Get-Variable 'BuildEnv' -ErrorAction:SilentlyContinue) -eq $null) {
Encoding = 'utf8'
ModuleToBuild = 'ModuleBuild'
ModuleVersion = '0.3.0'
ModuleWebsite = 'https://github.com/zloeber/ModuleBuild'
ModuleWebsite = 'https://github.com/ModuleBuild/ModuleBuild'
ModuleCopyright = "(c) $((get-date).Year.ToString()) Zachary Loeber. All rights reserved."
ModuleLicenseURI = 'https://github.com/zloeber/ModuleBuild/LICENSE.md'
ModuleLicenseURI = 'https://github.com/ModuleBuild/ModuleBuild/LICENSE.md'
ModuleTags = 'scaffold, Module, Invoke-Build' -split ','
ModuleAuthor = 'Zachary Loeber'
ModuleDescription = 'A scaffolding framework which can be used to kickstart a generic PowerShell module project. '
Expand Down
2 changes: 1 addition & 1 deletion build/docs/Additional/Acknowledgements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ModuleBuild Acknowledgements

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

This project owes some acknowledgements to other projects. Here are some other authors or projects which have made this project possible. If you believe you or a project should be included in this list please let us know.

Expand Down
6 changes: 3 additions & 3 deletions build/docs/Additional/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ModuleBuild Change Log

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

## Version 0.3.0

Expand Down Expand Up @@ -41,8 +41,8 @@ Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloebe

- Updated vscode tasks.json to fix depreciated syntax.
- Fixed `-Force` switch processing on Add-MBPublicFunction to still create the function if the provided name is detected as plural.
- Fixed [cleanup script modulebuild execution issue](https://github.com/zloeber/ModuleBuild/issues/5) by separating out the postbuildtask into its own Invoke-Build code block (I had done this a while ago and never rolled up the changes into the Plaster template).
- Fixed a glaring issue with the PlatyPS output where any Guids were 00000000-0000-0000-0000-000000000000 instead of the actual module manifest Guid [reported via issue #6](https://github.com/zloeber/ModuleBuild/issues/6). This happens because we build the module help from the psm1 load of the module in memory, not the psd1 file as that psd1 manifest gets recreated at build time with the appropriate exported functions and such. Basically a chicken/egg scenario. For now we just manually replace the output markdown files with the correct Guid before moving on to the help file packaging.
- Fixed [cleanup script modulebuild execution issue](https://github.com/ModuleBuild/ModuleBuild/issues/5) by separating out the postbuildtask into its own Invoke-Build code block (I had done this a while ago and never rolled up the changes into the Plaster template).
- Fixed a glaring issue with the PlatyPS output where any Guids were 00000000-0000-0000-0000-000000000000 instead of the actual module manifest Guid [reported via issue #6](https://github.com/ModuleBuild/ModuleBuild/issues/6). This happens because we build the module help from the psm1 load of the module in memory, not the psd1 file as that psd1 manifest gets recreated at build time with the appropriate exported functions and such. Basically a chicken/egg scenario. For now we just manually replace the output markdown files with the correct Guid before moving on to the help file packaging.

## Version 0.2.1

Expand Down
2 changes: 1 addition & 1 deletion build/docs/Additional/Contributing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to ModuleBuild

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

There are some important things to be aware of if you plan on contributing to this project.

Expand Down
2 changes: 1 addition & 1 deletion build/docs/Additional/ToDo.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ModuleBuild ToDo List

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

There are many items which are possible and should probably be added to this project. Here are a few thoughts on ones I'll probably get addressed sooner or later. I'm open to suggestions or pull requests.

Expand Down
2 changes: 1 addition & 1 deletion build/docs/Additional/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ModuleBuild
A scaffolding framework which can be used to kickstart a generic PowerShell module project.

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

## What is ModuleBuild?
A scaffolding framework which can be used to kickstart a generic PowerShell module project with an Invoke-Build backend for regular deployments and other automated tasks.
Expand Down
2 changes: 1 addition & 1 deletion build/docs/en-US/about_ModuleName.help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ KEYWORDS
scaffold, Module, Invoke-Build

SEE ALSO
https://github.com/zloeber/ModuleBuild
https://github.com/ModuleBuild/ModuleBuild
2 changes: 1 addition & 1 deletion docs/Acknowledgements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ModuleBuild Acknowledgements

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

This project owes some acknowledgements to other projects. Here are some other authors or projects which have made this project possible. If you believe you or a project should be included in this list please let us know.

Expand Down
6 changes: 3 additions & 3 deletions docs/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ModuleBuild Change Log

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

## Version 0.3.0

Expand Down Expand Up @@ -41,8 +41,8 @@ Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloebe

- Updated vscode tasks.json to fix depreciated syntax.
- Fixed `-Force` switch processing on Add-MBPublicFunction to still create the function if the provided name is detected as plural.
- Fixed [cleanup script modulebuild execution issue](https://github.com/zloeber/ModuleBuild/issues/5) by separating out the postbuildtask into its own Invoke-Build code block (I had done this a while ago and never rolled up the changes into the Plaster template).
- Fixed a glaring issue with the PlatyPS output where any Guids were 00000000-0000-0000-0000-000000000000 instead of the actual module manifest Guid [reported via issue #6](https://github.com/zloeber/ModuleBuild/issues/6). This happens because we build the module help from the psm1 load of the module in memory, not the psd1 file as that psd1 manifest gets recreated at build time with the appropriate exported functions and such. Basically a chicken/egg scenario. For now we just manually replace the output markdown files with the correct Guid before moving on to the help file packaging.
- Fixed [cleanup script modulebuild execution issue](https://github.com/ModuleBuild/ModuleBuild/issues/5) by separating out the postbuildtask into its own Invoke-Build code block (I had done this a while ago and never rolled up the changes into the Plaster template).
- Fixed a glaring issue with the PlatyPS output where any Guids were 00000000-0000-0000-0000-000000000000 instead of the actual module manifest Guid [reported via issue #6](https://github.com/ModuleBuild/ModuleBuild/issues/6). This happens because we build the module help from the psm1 load of the module in memory, not the psd1 file as that psd1 manifest gets recreated at build time with the appropriate exported functions and such. Basically a chicken/egg scenario. For now we just manually replace the output markdown files with the correct Guid before moving on to the help file packaging.

## Version 0.2.1

Expand Down
2 changes: 1 addition & 1 deletion docs/Contributing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to ModuleBuild

Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
Project Site: [https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

There are some important things to be aware of if you plan on contributing to this project.

Expand Down
4 changes: 2 additions & 2 deletions docs/Functions/Add-MBPublicFunction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -85,5 +85,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Add-PublicFunction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -85,5 +85,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Get-MBBuildEnvironment.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -57,5 +57,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Import-MBModulePrivateFunction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -172,5 +172,5 @@ Be very careful before importing everything as any wayward functions might get i

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Import-MBModulePublicFunction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -138,5 +138,5 @@ This only applies to modules of the type 'Script' and commands of the type 'Func

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Import-ModulePrivateFunction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -172,5 +172,5 @@ Be very careful before importing everything as any wayward functions might get i

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Import-ModulePublicFunction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -138,5 +138,5 @@ This only applies to modules of the type 'Script' and commands of the type 'Func

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Initialize-MBModuleBuild.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -81,5 +81,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

4 changes: 2 additions & 2 deletions docs/Functions/Initialize-ModuleBuild.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: ModuleBuild-help.xml
Module Name: ModuleBuild
online version: https://github.com/zloeber/ModuleBuild
online version: https://github.com/ModuleBuild/ModuleBuild
schema: 2.0.0
---

Expand Down Expand Up @@ -81,5 +81,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## RELATED LINKS

[https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
[https://github.com/ModuleBuild/ModuleBuild](https://github.com/ModuleBuild/ModuleBuild)

Loading
0