IntuneWinAppUtilGUI.psd1

@{
    RootModule         = 'IntuneWinAppUtilGUI.psm1'
    ModuleVersion      = '1.0.0'
    GUID               = '7db79126-1b57-48d2-970a-4795692dfcfc'
    Author             = 'Giovanni Solone'
    Description        = 'GUI wrapper for IntuneWinAppUtil.exe with config file support and WPF interface.'

    PowerShellVersion  = '5.1'

    RequiredAssemblies = @(
        'System.Windows.Forms',
        'PresentationFramework'
    )

    FunctionsToExport  = @('Show-IntuneWinAppUtilGui')

    CmdletsToExport    = @()
    VariablesToExport  = @()
    AliasesToExport    = @()

    PrivateData        = @{
        PSData = @{
            Tags         = @('Intune', 'Win32', 'GUI', 'packaging', 'IntuneWinAppUtil', 'IntuneWinAppUtil.exe', 'Microsoft', 'PowerShell')
            License      = 'MIT'
            ProjectUri   = 'https://github.com/gioxx/IntuneWinAppUtilGUI'
            Icon         = 'icon.png'
            Readme       = 'README.md'
            ReleaseNotes = @'
- First Version.
'@

        }
    }
}