ps12exe.psd1

@{
    RootModule = 'ps12exe.psm1'
    FunctionsToExport = @('ps12exe', 'ps12exeGUI', 'Set-ps12exeContextMenu', 'Start-ps12exeWebServer')
    PrivateData = @{
        PSData = @{
            Tags = @('Executable', 'Compiler', 'ps2exe', 'exe', 'ps12exe', 'Windows')
            LicenseUri = 'https://github.com/steve02081504/ps12exe/blob/master/LICENSE'
            IconUri = 'https://raw.githubusercontent.com/steve02081504/ps12exe/master/img/icon.ico'
            ProjectUri = 'https://github.com/steve02081504/ps12exe'
        }
    }
    HelpInfoURI = 'https://github.com/steve02081504/ps12exe/blob/master/README.md'
    PowerShellVersion = '5.0'
    CmdletsToExport = @()
    Copyright = '(c) steve02081504.'
    Description = 'better repo 2 compile pwsh scripts to exe:
- Use `ps12exe a.ps1` to convert `a.ps1` into `a.exe`;
- Use `ps12exeGUI` for a graphical interface that simplifies compilation;
- Use `Set-ps12exeContextMenu` to add a context menu item for quick compilation or GUI access on `.ps1` files;
- Use `Start-ps12exeWebServer` to launch a web server that allows users to compile scripts online;
All commands in this module support the `-help` option for detailed assistance in your language.'

    ModuleVersion = '0.3.16'
    GUID = '0bdadd0c-4365-422a-b7d4-62c2ea6d2d14'
    Author = 'steve02081504'
    NestedModules = @()
    VariablesToExport = @()
    AliasesToExport = @()
    DotNetFrameworkVersion = '4.0'
    CompanyName = 'Unknown'
}