build(git-provider): Add GitRepoRegistration commands to build
This commit is contained in:
parent
5448fa3f9e
commit
270d545e56
2 changed files with 31 additions and 8 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue