We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaaa1ca commit 25d60efCopy full SHA for 25d60ef
1 file changed
Tools/Build-DevApiModules.ps1
@@ -5,6 +5,11 @@ $repoRoot = Split-Path -Parent $toolsRoot
5
$modulesRoot = Join-Path $repoRoot 'Modules'
6
$outputRoot = Join-Path $repoRoot 'Output'
7
8
+if (-not (Get-Module -ListAvailable -Name ModuleBuilder)) {
9
+ Install-Module -Name ModuleBuilder -Scope CurrentUser -Force
10
+}
11
+Import-Module -Name ModuleBuilder -Force
12
+
13
Write-Host "Repo root: $repoRoot"
14
Set-Location -Path $repoRoot
15
0 commit comments