CoaLoggingModule.psd1
# # Module manifest for module 'CoaLoggingModule' # # Generated by: joseph.crockett@alexandriava.gov # # Generated on: 3/17/2018 # @{ # Script module or binary module file associated with this manifest # ModuleToProcess = '.\CoaLoggingModule.psm1' # Script module or binary module file associated with this manifest RootModule = '.\CoaLoggingModule.psm1' # Version number of this module. ModuleVersion = '1.0.2' # ID used to uniquely identify this module GUID = '1142c9ad-4f85-4614-829c-162884cc0f65' # Author of this module Author = 'joseph.crockett@alexandriava.gov' # Company or vendor of this module CompanyName = 'City of Alexandria, Virginia' # Copyright statement for this module Copyright = '(c) 2018 City of Alexandria, VA' # Description of the functionality provided by this module Description = 'Loads logging script specific to COA business needs' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Name of the Windows PowerShell host required by this module # PowerShellHostName = '' # Minimum version of the Windows PowerShell host required by this module # PowerShellHostVersion = '' # Modules that must be imported into the global environment prior to importing this module # RequiredModules = '' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. # FunctionsToExport = '' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @("Add-CoaWriteToLog") # Variables to export from this module # VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # The primary categorization of this module (from the TechNet Gallery tech tree). Category = "Cmdlet" # Tags applied to this module. These help with module discovery in online galleries. Tags = @('COA','Logging') # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. ProjectUri = 'https://github.com/jcrocke9/CoaLoggingModule' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = '1.0.2 Remove DefaultCommandPrefix' # External dependent modules of this module # ExternalModuleDependencies = '' } # End of PSData hashtable } # End of PrivateData hashtable # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = 'Coa' } |