SimpleLogCmdLet.psd1.txt

#
# Module manifest for module 'SimpleLogCmdLet'
#
# Generated by: Steven Digby
#
# Generated on: 03/04/2019
#
 
@{
 
RootModule = 'SimpleLogCmdlet.dll'
ModuleVersion = '1.0.0.1'
GUID = 'afa718a0-b280-41ed-ab8c-fd9a5388ec73'
Author = 'Steven Digby'
CompanyName = 'Azven.com'
Copyright = '(c) 2019 Steven Digby. All rights reserved.'
PowerShellVersion = '3.0'
DotNetFrameworkVersion = '4.6'
CLRVersion = '4.0'
FunctionsToExport = @()
CmdletsToExport = 'Initialize-Log', 'Add-Log', 'Clear-Log'
Description = 'A basic logging PS command set using just three commands (Initialize-Log, Add-Log and Clear-Log) and one system variable $LogFile.'
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 = '*'
 
# DSC resources to export from this module
# DscResourcesToExport = @()
 
# List of all modules packaged with this module
# ModuleList = @()
 
# List of all files packaged with this module
# FileList = @()
 
# 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 = @{
 
        # Tags applied to this module. These help with module discovery in online galleries.
        # Tags = @()
 
        # A URL to the license for this module.
        # LicenseUri = ''
 
        # A URL to the main website for this project.
        # ProjectUri = ''
 
        # A URL to an icon representing this module.
        # IconUri = ''
 
        # ReleaseNotes of this module
        # ReleaseNotes = ''
 
    } # End of PSData hashtable
 
} # End of PrivateData hashtable
 
# HelpInfo URI of this module
# HelpInfoURI = ''
 
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
 
}