MariusTestModule2.psd1
|
@{ # Script module or binary module file associated with this manifest. RootModule = 'MariusTestModule2.psm1' # Version number of this module. ModuleVersion = '0.0.1' # ID used to uniquely identify this module GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890' # Author of this module Author = 'PSModule' # Company or vendor of this module CompanyName = 'PSModule' # Copyright statement for this module Copyright = '(c) PSModule. All rights reserved.' # Description of the functionality provided by this module Description = 'MariusTestModule2 - A simple test module to understand nupkg publishing to PSGallery.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '7.0' # Functions to export from this module FunctionsToExport = @('Get-TestGreeting') # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @() # Private data to pass to the module specified in RootModule PrivateData = @{ PSData = @{ # Tags applied to this module for discoverability Tags = @('Test', 'Demo', 'Greeting') # A URL to the license for this module. LicenseUri = 'https://opensource.org/licenses/MIT' # A URL to the main website for this project. ProjectUri = 'https://github.com/PSModule/Process-PSModule' # ReleaseNotes of this module ReleaseNotes = 'Initial test release for understanding nupkg publishing.' } } } |