build.ps1
1 2 3 4 5 6 7 8 9 10 11 12 |
$ModuleSettings = @{ RootModule = './demo-module-explore22.psm1' ModuleVersion = '1.0.1' Author = 'David Stamen' Description = 'This is a demo created for VMware Explore 2022' } $ModuleSettings New-ModuleManifest @ModuleSettings -Path './demo-module-explore22.psd1' Publish-Module -Path . -NuGetApiKey 'oy2m4ekyyxomfflkygfqjkcfpehoevke5flmnediw3metm' |