ConvertPDFtoTXT.psd1

<#
    ===========================================================================
     Created on: 6.4.2023. 22:27
     Created by: chixus
     Organization: CHXOFT
     Filename: ConvertPDFtoTXT.psd1
     -------------------------------------------------------------------------
     Module Manifest
    -------------------------------------------------------------------------
     Module Name: ConvertPDFtoTXT
    ===========================================================================
#>


@{
    RootModule = 'ConvertPDFtoTXT.psm1'
    ModuleVersion = '1.0.2.3'
    GUID = '61407158-5ad4-4fac-94ce-c1542644e1f1'
    Author = 'chixus'
    CompanyName = 'CHXOFT'
    Copyright = '(c) 2023. All rights reserved.'
    Description = 'Converts PDF file to pure text.'
    PowerShellVersion = '3.0'
    PowerShellHostName = ''
    PowerShellHostVersion = ''
    DotNetFrameworkVersion = '2.0'
    CLRVersion = '2.0.50727'
    ProcessorArchitecture = 'None'
    RequiredModules = @()
    RequiredAssemblies = @()
    ScriptsToProcess = @()
    TypesToProcess = @()
    FormatsToProcess = @()
    NestedModules = @()
    FunctionsToExport = @('Convert-PDF2TXT')
    CmdletsToExport = '*' 
    VariablesToExport = '*'
    AliasesToExport = '*'
    ModuleList = @()
    FileList = @()
    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 = 'Minor changes.'        
        }
    }
}