PSPublishHelper.psd1
@{ RootModule = 'PSPublishHelper.psm1' ModuleVersion = '0.1.1' # CompatiblePSEditions = @() GUID = '89d9bea3-6e06-44ef-8772-a45b644da8c0' Author = 'Mark E. Kraus' CompanyName = 'Mark E. Kraus' Copyright = 'Copyright (c) Mark E. Kraus. All rights reserved.' Description = 'A module to assist with "Build Once, Deploy Many" publishing paradigms for PowerShell' # PowerShellVersion = '' # PowerShellHostName = '' # PowerShellHostVersion = '' # DotNetFrameworkVersion = '' # CLRVersion = '' # ProcessorArchitecture = '' # RequiredModules = @() # RequiredAssemblies = @() # ScriptsToProcess = @() # TypesToProcess = @() # FormatsToProcess = @() # NestedModules = @() FunctionsToExport = @('Publish-PSModuleNuget') CmdletsToExport = @() # VariablesToExport = @() AliasesToExport = @() # DscResourcesToExport = @() # ModuleList = @() # FileList = @() PrivateData = @{ PSData = @{ LicenseUri = 'https://github.com/markekraus/PSPublishHelper/blob/master/LICENSE' Tags = @('Module','Builder','Publishing','Template','CI','CD','CI/CD') ProjectUri = 'https://github.com/markekraus/PSPublishHelper' } } # End of PrivateData hashtable # HelpInfoURI = '' # DefaultCommandPrefix = '' } |