PSMekBuilder.psd1
@{ RootModule = 'PSMekBuilder.psm1' ModuleVersion = '0.0.1' # CompatiblePSEditions = @() GUID = '8f9d7605-70f8-42b4-a494-e111858fba23' Author = 'Mark E. Kraus' CompanyName = 'Mark E. Kraus' Copyright = 'Copyright (c) Mark E. Kraus. All rights reserved.' Description = 'An Opinionated Implementation of a PowerShell Module Building Framework' # PowerShellVersion = '' # PowerShellHostName = '' # PowerShellHostVersion = '' # DotNetFrameworkVersion = '' # CLRVersion = '' # ProcessorArchitecture = '' # RequiredModules = @() # RequiredAssemblies = @() # ScriptsToProcess = @() # TypesToProcess = @() # FormatsToProcess = @() # NestedModules = @() FunctionsToExport = @() CmdletsToExport = @() # VariablesToExport = @() AliasesToExport = @() # DscResourcesToExport = @() # ModuleList = @() # FileList = @() PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = 'Module', 'Builder', 'Template', 'CI', 'CD', 'CI/CD' # A URL to the license for this module. LicenseUri = 'https://github.com/markekraus/PSMekBuilder/blob/master/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/markekraus/PSMekBuilder' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module # ReleaseNotes = '' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfoURI = '' # DefaultCommandPrefix = '' } |