Toolchain.psd1

@{
    RootModule = 'Toolchain.psm1'
    ModuleVersion = '2.0.5'
    CompatiblePSEditions = @('Desktop','Core')
    GUID = '12d99217-b208-4995-8cdf-26e4cf695588'
    PowerShellVersion = '5.1'
    Author = 'AllSageTech'
    CompanyName = 'AllSageTech, LLC'
    Copyright = 'Mozilla Public License Version 2.0'
    Description = 'A package manager and environment to provide consistent tooling for software teams.'
    FunctionsToExport = @('Invoke-Toolchain')
    FormatsToProcess = @('Toolchain.Format.ps1xml')
    CmdletsToExport = @()
    VariablesToExport = ''
    AliasesToExport = @('toolchain', 'tool', 'tlc')
    PrivateData = @{
        PSData = @{
            Tags = @('windows', 'docker', 'package-manager', 'package', 'development', 'powershell', 'container', 'configuration', 'toolchain', 'toolchains')
            LicenseUri = 'https://github.com/allsagetech/toolchain/blob/main/LICENSE.md'
            ProjectUri = 'https://github.com/allsagetech/toolchain'
        }
    }
}