trevormodule.psd1
@{ RootModule = 'trevormodule.psm1' Author = 'Trevor Sullivan <trevor.sullivan@cbtnuggets.com>' CompanyName = 'CBT Nuggets' ModuleVersion = '3.0' GUID = '118e5a88-c149-45fa-9d4c-33c0aebf44da' Copyright = '2022 CBT Nuggets' Description = 'xxxxxxxxxxxxxxxxxxxx' CompatiblePSEditions = @('Desktop', 'Core') PowerShellVersion = '5.1' # Which PowerShell functions are exported from your module? (eg. Get-CoolObject) FunctionsToExport = @('Do-SomethingCool') # Which PowerShell aliases are exported from your module? (eg. gco) AliasesToExport = @('') # Which PowerShell variables are exported from your module? (eg. Fruits, Vegetables) VariablesToExport = @('') # PowerShell Gallery: Define your module's metadata PrivateData = @{ PSData = @{ # What keywords represent your PowerShell module? (eg. cloud, tools, framework, vendor) Tags = @('cooltag1', 'cooltag2') # What software license is your code being released under? (see https://opensource.org/licenses) LicenseUri = '' # What is the URL to your project's website? ProjectUri = '' # What is the URI to a custom icon file for your project? (optional) IconUri = '' # What new features, bug fixes, or deprecated features, are part of this release? ReleaseNotes = @' '@ } } # If your module supports updateable help, what is the URI to the help archive? (optional) # HelpInfoURI = '' } |