PowerShellBuddy.psd1
@{ # # MODUL-INFORMATION # GUID = 'cb790b27-dcec-458f-888d-47d9e7c6599d' Description = 'Things that make the life of a PowerShell developer easier.' ModuleVersion = '1.0' RootModule = 'PowerShellBuddy.psm1' # # AUTHOR # Author = 'Attila Krick' CompanyName = 'ATTILAKRCK.COM' Copyright = '(c) 2024 Attila Krick. All rights reserved.' # # REQUIREMENTS # PowerShellVersion = '7.1' ProcessorArchitecture = 'None' CompatiblePSEditions = @('Desktop', 'Core') # # PREPARATION # FormatsToProcess = @( 'Public\Get-ModuleUpdate.format.ps1xml', 'Public\Get-ParameterInfo.format.ps1xml', 'Public\Test-SecurityState.format.ps1xml' ) FunctionsToExport = @( 'Get-Enum', 'Get-ModuleUpdate', 'Get-ParameterInfo', 'Get-PowerShellNews', 'Get-StrictMode', 'Get-TypeDocumentation', 'Out-Log', 'Get-Quote', 'Out-Speech', 'Read-Window', 'Test-PSDeveloperReady', 'Test-SecurityState', 'Use-NewPrompt' ) CmdletsToExport = @() AliasesToExport = @() VariablesToExport = @() FileList = @( 'PowerShellBuddy.psd1', 'PowerShellBuddy.psm1', 'PowerShellBuddy.Tests.ps1', 'Attila_Krick_Software_Developer.cer', 'Public\Get-Enum.ps1', 'Public\Get-ModuleUpdate.format.ps1xml', 'Public\Get-ModuleUpdate.ps1', 'Public\Get-ParameterInfo.format.ps1xml', 'Public\Get-ParameterInfo.ps1', 'Public\Get-ParameterInfo.Tests.ps1', 'Public\Get-PowerShellNews.ps1', 'Public\Get-Quote.ps1' 'Public\Get-StrictMode.ps1', 'Public\Get-StrictMode.Tests.ps1', 'Public\Get-TypeDocumentation.ps1', 'Public\Out-Log.ps1', 'Public\Out-Speech.ps1', 'Public\Read-Window.ps1', 'Public\Test-PSDeveloperReady.ps1', 'Public\Test-SecurityState.ps1', 'Public\Test-SecurityState.Format.ps1xml', 'Public\Use-NewPrompt.ps1' ) # # POWERSHELL GALLERY INFORMATION # PrivateData = @{ PSData = @{ LicenseUri = 'https://attilakrick.com/datenschutzerklaerung' ProjectUri = 'https://attilakrick.com/powershell/' IconUri = 'https://attilakrick.com/media/AKPT-Logo.png' Tags = @('PSEdition_Desktop', 'PSEdition_Core', 'Windows', 'Attila', 'Krick', 'Schulung', 'WorkShop', 'Training', 'deutsch', 'Tools', 'Guru') ReleaseNotes = @' Version 1.0: - '@ } } } |