AdoCmdlets.psd1

@{
    RootModule           = 'AdoCmdlets.dll'
    ModuleVersion     = '0.1.0'
    GUID                 = 'a3e7b2d1-4f6c-4e8a-9d3b-1c5f7a2e8b4d'
    Author               = 'Ben Appleby'
    Description          = 'PowerShell wrapper for Azure DevOps .NET client libraries'
    PowerShellVersion    = '7.4'
    CompatiblePSEditions = @('Core')
    CmdletsToExport      = @(
        'Connect-AdoOrganization'
        'Disconnect-AdoOrganization'
        'Get-AdoProject'
        'Get-AdoTeam'
        'Get-AdoWorkItem'
        'New-AdoWorkItem'
        'Set-AdoWorkItem'
        'Get-AdoRepository'
        'Get-AdoPullRequest'
        'New-AdoPullRequest'
        'Get-AdoBuild'
        'Get-AdoBuildDefinition'
        'Start-AdoBuild'
        'Invoke-AdoRestMethod'
    )
    FunctionsToExport    = @()
    AliasesToExport      = @()
    VariablesToExport    = @()
}