TSDate.psd1

@{
    RootModule = 'TSDate'
    ModuleVersion = '0.0.2'
    # CompatiblePSEditions = @()
    GUID = 'e65becba-66d5-412f-891e-62561583588d'
    Author = 'Toby Slight'
    # CompanyName = 'Unknown'
    Copyright = '(c) Toby Slight. All rights reserved.'
    Description = 'Create nested date objects'
    # PowerShellVersion = ''
    # PowerShellHostName = ''
    # PowerShellHostVersion = ''
    # DotNetFrameworkVersion = ''
    # CLRVersion = ''
    # ProcessorArchitecture = ''
    RequiredModules = @(
    'TSUtils'
    )
    # RequiredAssemblies = @()
    # ScriptsToProcess = @()
    # TypesToProcess = @()
    # FormatsToProcess = @()
    # NestedModules = @()
    FunctionsToExport = '*'
    CmdletsToExport = '*'
    VariablesToExport = '*'
    AliasesToExport = '*'
    # DscResourcesToExport = @()
    # ModuleList = @()
    # 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 = @{
        # These help with module discovery in online galleries.
        # Tags = @()
        # LicenseUri = ''
        # ProjectUri = ''
        # IconUri = ''
        # ReleaseNotes = ''
    }
    }
    # HelpInfoURI = ''
    # DefaultCommandPrefix = ''
}