PowerShell.Module.InvokeWinGet.psd1

#̷\ ===================================================================
#̷\ PowerShell Module -- PowerShell.Module.InvokeWinGet
#̷\
#̷\ Manifest File Generated on Tue, 24 Jan 2023 23:44:37 GMT
#̷\ Current Git Revision 91542a8aa9fde1d437d223fbf2fab84edef2007f
#̷\ ===================================================================


@{


    RootModule        =  'PowerShell.Module.InvokeWinGet.psm1'

    ModuleVersion     = '1.0.80.0'

    GUID              = '34b2af6d-b9c7-45ae-89a2-adbe8d08bda7'

    CompanyName       = 'Unknown'

    Author            = 'Guillaume Plante'

    Copyright         = '(c) 2020 Guillaume Plante. All rights reserved.'

    Description       = 'Module to Invoke WinGet and parse the output in PSOjects'

    PowerShellVersion = '5.0'

    RequiredAssemblies = @()

    # Private data to pass to the module specified in RootModule. 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       = @('PowerShell.Module.InvokeWinGet')
            # A URL to the license for this module.
            LicenseUri = 'https://github.com/arsscriptum/PowerShell.Module.InvokeWinGet/blob/main/COPYING'
            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/arsscriptum/PowerShell.Module.InvokeWinGet'
        } # End of PSData hashtable
    } # End of PrivateData hashtable


    #̷\ ===================================================
    #̷\ MODULE EXPORTED FUNCTIONS
    #̷\ ===================================================

    # !NOTE! --- The following functions declaration was automatically generated by the build script. ---
    FunctionsToExport = @(

        # --- Exported Functions from GetInstalledSoftware.ps1 ---
        "Get-InstalledSoftware",

        # --- Exported Functions from GetWinGetExePath.ps1 ---
        "Get-WinGetExePath",

        # --- Exported Functions from GetWinGetVersion.ps1 ---
        "Get-WinGetVersion",

        # --- Exported Functions from InvokePsWinGet.ps1 ---
        "Invoke-PSWinGet",

        # --- Exported Functions from SetWinGetConfiguration.ps1 ---
        "Set-WinGetConfiguration",

        # --- Exported Functions from Util.ps1 ---
        "Get-WinGetPackageVersionClassPath")
    

    #̷\ ===================================================
    #̷\ THE LIST OF EXPORTED ALIASES
    #̷\ ===================================================

    # !NOTE! --- The following alias declaration was automatically generated by the build script. ---
    # List of all aliases packaged with this module

    AliasesToExport = @(
        "getsoftdata",
        "pswinget",
        "wingetpath",
        "wingetversion")

    #̷\ ===================================================
    #̷\ THE LIST OF FILES
    #̷\ (IF COMPRESSED, WILL BE EMPTY)
    #̷\ ===================================================

    FileList = @()

}