EasyGUI.psd1
|
@{ RootModule = 'EasyGUI.psm1' CompanyName = 'Secret Programmer' GUID = '073a96f3-19fb-4e78-bc56-f3f371168224' ModuleVersion = '1.0.0' Author = 'SercretProgrammer' Description = 'EasyGUI is a lightweight PowerShell module for quickly creating graphical user interfaces (GUIs). It provides simple, easy-to-use functions for creating windows, buttons, input boxes, dropdowns, radio buttons, tabs, and more, without requiring deep knowledge of WPF or WinForms. Designed for simplicity and rapid development, EasyGUI lets PowerShell users build GUIs efficiently for scripts, tools, or utilities.' FunctionsToExport = @( "PrepareWindow", "Window.Text", "Window.AddButton", "Window.AddInputBox", "Window.InputApply", "Window.AddOption", "Window.AddTabControl", "Window.AddTab", "Window.AddRadioButtonApply", "Window.AddRadioOption", "Window.AddDropDown", "Window.AddSuperApplyButton", "Window.AddApplyOptionButton", "Window.Close", "Window.ControlLockCheckBox", "Window.ControlLockEntireRadioID", "IsOptionChecked", "Select-Path", "ShowWindow", "Get-GUIWindow", "Set-GUIWindow" ) CmdletsToExport = @() PrivateData = @{ PSData = @{ Tags = @('GUI','Forms','PowerShell','Easy','Simple') LicenseUri = 'https://github.com/SercretProgrammer/EasyGUI/blob/main/LICENSE' ProjectUri = 'https://github.com/SercretProgrammer/EasyGUI' } } } |