build(git-provider): Add GitRepoRegistration commands to build

This commit is contained in:
Scott 2026-09-03 20:42:20 +10:00
commit 270d545e56
2 changed files with 31 additions and 8 deletions

View file

@ -1,15 +1,18 @@
param (
[string]$path,
[string]$powershellModuleFileLocation,
[string]$guid,
[string]$author,
[string[]]$nestedModules,
[string]$rootModule,
[string[]]$cmdletsToExport,
[string]$manifestFileLocation
[string]$manifestFileLocation,
# not used for anything yet, but I should probably simplify the module locations as they get the output dir
# created in CopyOutputTask.cs
[string]$outputDir
)
$manifestSplat = @{
Path = "$path"
Path = "$powershellModuleFileLocation"
GUID = "$guid"
Author = "$author"
NestedModules = @($nestedModules)