PublishModule.ps1
$Manifest = @{ Path = 'PSMultiLogPlus.psd1' RootModule = 'PSMultiLogPlus.psm1' Author = 'dougpuob' CompatiblePSEditions = 'Desktop' ModuleVersion = '0.0.2' Description = 'This module forked sfrom PSMultiLog(Adam Platt), and I filed a PR to the original project for my feature. So this module maybe be removed if the PR is merged.' PowerShellVersion = '5.1' GUID = '112a3d06-a510-41c8-a906-50321f3c64ed' } New-ModuleManifest @Manifest Test-ModuleManifest -Path "PSMultiLogPlus.psd1" Publish-Module -Path "." -NuGetApiKey "oy2ooiqjrskmjhbzd2mqi2avwlxdpygefftqtlblyllt2m" |