PSGUIHelper.psd1
# # Module manifest for module 'GUIHelper' # # Generated by: Gaston Paquette # # Generated on: 07/26/2021 # @{ # Script module or binary module file associated with this manifest. RootModule = 'PSGUIHelper.psm1' # Version number of this module. ModuleVersion = '1.22' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = '5eb51e6d-16d0-4b07-9245-e671a8bfe0e3' # Author of this module Author = 'Gaston Paquette' # Company or vendor of this module CompanyName = 'NA' # Copyright statement for this module Copyright = '(c) 2021 Gaston Paquette. All rights reserved.' # Description of the functionality provided by this module Description = 'Module that takes a WPF XAML file, and creates a Powershell GUI using MahApps' PowerShellVersion = '5.1' # Modules that must be imported into the global environment prior to importing this module #RequiredModules = @('') # Script files (.ps1) that are run in the caller's environment prior to importing this module. ScriptsToProcess = @('classes\JWNewJob.class.ps1') # Assemblies that must be loaded prior to importing this module RequiredAssemblies = @("assembly\MahApps.Metro.dll", 'assembly\MahApps.Metro.IconPacks.dll', 'System.Windows.Forms', 'PresentationFramework', 'PresentationCore', 'assembly\WpfAppBar.dll' ) FunctionsToExport = @('New-PSGUIWPF','Add-PSGUIActions','Read-PSGUIXaml','Update-PSGUIWPF','Export-PSGUIScripts','Add-PSGUICustomCommand') } |