ProcessInspector.psd1
@{ RootModule = 'module\ProcessInspector.Controller.psm1' ModuleVersion = '0.0.1' GUID = '313d02d6-bb80-472b-b649-18d897072c65' Author = 'Fabrice Sanga' CompanyName = 'sangafabrice' Copyright = '© 2024 SangaFabrice. All rights reserved.' Description = 'The Process Inspector dialogue box inspects individual processes and provides an option to stop them. It is a simplified view of the Task Manager. However, it is a practical starter for making GUI applications in PowerShell while applying the Model-View-Controller (MVC) architecture. → To support this project, please visit and like: https://github.com/sangafabrice/process-inspector-mvc' PowerShellVersion = '7.0' PowerShellHostVersion = '7.0' FunctionsToExport = 'Stop-ProcessInspector','Reset-ProcessInspector','Show-ProcessInspector' CmdletsToExport = @() AliasesToExport = @() FileList = 'ProcessInspector.psd1','module\ProcessInspector.Controller.psm1','module\ProcessInspector.Model.psm1','module\ProcessInspector.View.psm1','module\script\Get-ProcessInspectorUIAdapter.ps1','module\script\ico.bmp','module\script\New-ProcessInspectorUI.ps1','module\script\Set-ProcessInspectorUIAdapterProperties.ps1' PrivateData = @{ PSData = @{ Tags = 'process-inspector','mvc','adapter','design-pattern','gui','winforms' LicenseUri = 'https://github.com/sangafabrice/process-inspector-mvc/blob/module/LICENSE.md' ProjectUri = 'https://github.com/sangafabrice/process-inspector-mvc' IconUri = 'https://gistcdn.githack.com/sangafabrice/a8c75d6031a491c0907d5ca5eb5587e0/raw/406120be7a900c3998e33d7302772827f20539f0/automation.svg' ReleaseNotes = 'This should be considered a tutorial.' } } } |