CameraTools.psd1


@{
    RootModule = 'PSModule.psm1'
    GUID = 'ea42ab42-d536-4815-bd5e-816844685bf0'
    Author = 'Matt Small'
    Copyright = '(c) Matt Small. All rights reserved.'
    Description = @'
The Camera Tools module assists with the configuration of Axis and Hanwha cameras
'@

    PowerShellVersion = '3.0'
    #FormatsToProcess = ''
    FunctionsToExport = @(
        'Format-CTSDCard'
        'Get-CTDateTime'
        'Get-CTDNSSettings'
        'Get-CTMotion'
        'Get-CTRecordingGeneral'
        'Get-CTMediaProfile'
        'Get-CTRecordingStorage'
        'Get-CTSDCard'
        'Get-CTSnapshot'
        'Get-CTNumOfChannels'
        'Invoke-CTAutofocus'
        'Set-CTDateTime'
        'Set-CTDNSSettings'
        'Set-CTMotion'
        'Set-CTRecordingGeneral'
        'Set-CTRecordingStorage'
        'Set-CTSDCard'
        'Update-CTMediaProfile'
        'Restart-CTCamera'
    )
    VariablesToExport = "*"
    AliasesToExport = "*"
    FileList = @(
        'PSModule.psm1'
    )
    RequiredModules = @(
        <#
        @{
            ModuleName='CredentialManager'
            ModuleVersion='2.0'
        }
        #>

    )
    HelpInfoURI = ''
    ModuleVersion = '0.2.1'
    PrivateData = @{
        PSData = @{
            Tags = @(
                'Camera'
                'Axis'
                'Hanwha'
                'Windows'
            )
            ProjectUri = ''
            LicenseUri = ''
            IsPrerelease = $true
            ReleaseNotes = @'
    ## 0.0.2
    * Major overhaul to prepare for multiple manufactuer support
    * Fixed SSL issues with PowerShell 7
 
     
    ## 0.0.1
    * First Release
    * May be buggy, but shouldn't break anything as all cmdlets only connect to things.
'@

        }
    }
}