PowerCode.Git.psd1

@{
    RootModule = 'PowerCode.Git.dll'
    ModuleVersion = '0.1.1'
    GUID = '86ed19db-80a7-48c4-a04e-1125b82f7cce'
    Author = 'Staffan Gustafsson'
    CompanyName = 'PowerCode'
    Copyright = '(c) Staffan Gustafsson. All rights reserved.'
    Description = 'PowerShell Git binary module implemented in C#.'
    PowerShellVersion = '7.4'
    CompatiblePSEditions = @('Core')
    FormatsToProcess = @('PowerCode.Git.Format.ps1xml')
    CmdletsToExport = @('Get-GitLog', 'Get-GitStatus', 'Get-GitDiff', 'Get-GitBranch', 'Switch-GitBranch', 'Get-GitTag')
    FunctionsToExport = @()
    AliasesToExport = @()

    PrivateData = @{
        PSData = @{
            Prerelease = 'preview'
        }
    }
}