WindowsExplorerSync.psd1

#
# Modulmanifest for the Module "WindowsExplorerSync"
#
# Generated by: Tobias Kiertscher
#
# Generated on: 2023-06-13
#

@{
    RootModule = 'WindowsExplorerSync.psm1'
    ModuleVersion = '1.3'
    # CompatiblePSEditions = @()
    GUID = '4cad47e5-7548-49cb-b149-61193c6d8d1a'
    Author = 'Tobias Kiertscher'
    CompanyName = 'Mastersign'
    Copyright = '(c) 2023 Tobias Kiertscher. All rights reserved.'
    Description = 'Get location and selected items from most recently focused Explorer window or tab'

    PowerShellVersion = '5.0'
    # PowerShellHostName = ''
    # PowerShellHostVersion = ''
    DotNetFrameworkVersion = '4.6.1'
    CLRVersion = '4.0'
    # ProcessorArchitecture = ''

    # RequiredAssemblies = @('ShellHook.dll')
    ScriptsToProcess = @(
        'tools/init.ps1'
    )
    # TypesToProcess = @()
    # FormatsToProcess = @()
    # NestedModules = @()
    FunctionsToExport = @(
        'Get-UrlFromWindowsExplorer'
        'Get-LocationFromWindowsExplorer'
        'Get-SelectedItemsFromWindowsExplorer'
        'Set-LocationFromWindowsExplorer'
        'Push-LocationFromWindowsExplorer'
    )
    CmdletsToExport = @()
    VariablesToExport = @(
        '$global:ShellHook'
    )
    AliasesToExport = @(
        'we'  # set location from Windows Explorer
        'wep' # push location from Windows Explorer
        'wel' # Windows Explorer location
        'wes' # Windows Explorer selection
    )
    # DscResourcesToExport = @()

    ModuleList = @()
    FileList = @(
        'lib/Mastersign.WindowsShell.dll'
        'tools/init.ps1'
        'WindowsExplorerSync.psm1'
        'WindowsExplorerSync.psd1'
    )

    PrivateData = @{
        PSData = @{
            Tags = @(
                'Windows'
                'Explorer'
                'Synchronize'
                'Location'
            )
            # LicenseUri = ''
            ProjectUri = 'https://www.powershellgallery.com/packages/WindowsExplorerSync'
            # IconUri = ''
            # ReleaseNotes = ''
        } # End of PSData
    } # End of PrivateData

    # HelpInfoURI = ''

    # DefaultCommandPrefix = ''
}