PSScriptModule.psd1
|
@{ GUID = 'a620849b-e411-460a-86ef-4c9e82a170ee' ModuleVersion = '0.12.3' Author = 'Marko Stanojevic' CompanyName = 'Warehouse Finds' Copyright = '(c) Warehouse Finds' Description = 'A production-ready PowerShell script module template designed to streamline the creation, testing, and delivery of PowerShell modules.' RootModule = 'PSScriptModule.psm1' FunctionsToExport = 'Get-PSScriptModuleInfo' CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('Powershell', 'Script', 'Template', 'Module') ProjectUri = 'https://github.com/warehousefinds/PSScriptModule' LicenseUri = 'https://github.com/WarehouseFinds/PSScriptModule/blob/main/LICENSE' ReleaseNotes = 'https://github.com/WarehouseFinds/PSScriptModule/releases' Prerelease = 'Prerelease' } } } |