Mdbc.psd1

@{
    Author = 'Roman Kuzmin'
    ModuleVersion = '6.6.5'
    Description = 'Mdbc module - MongoDB Cmdlets for PowerShell'
    CompanyName = 'https://github.com/nightroman'
    Copyright = 'Copyright (c) Roman Kuzmin'

    RootModule = 'Mdbc.dll'
    RequiredAssemblies = 'MongoDB.Bson.dll', 'MongoDB.Driver.Core.dll', 'MongoDB.Driver.dll'

    PowerShellVersion = '5.1'
    GUID = '12c81cd8-bde3-4c91-a292-e6c4f868106a'

    AliasesToExport = @()
    VariablesToExport = @()
    FunctionsToExport = @()
    CmdletsToExport = @(
        'Add-MdbcCollection'
        'Add-MdbcData'
        'Connect-Mdbc'
        'Export-MdbcData'
        'Get-MdbcCollection'
        'Get-MdbcData'
        'Get-MdbcDatabase'
        'Import-MdbcData'
        'Invoke-MdbcAggregate'
        'Invoke-MdbcCommand'
        'New-MdbcData'
        'Register-MdbcClassMap'
        'Remove-MdbcCollection'
        'Remove-MdbcData'
        'Remove-MdbcDatabase'
        'Rename-MdbcCollection'
        'Set-MdbcData'
        'Update-MdbcData'
        'Use-MdbcTransaction'
        'Watch-MdbcChange'
    )

    PrivateData = @{
        PSData = @{
            Tags = 'Mongo', 'MongoDB', 'Database'
            ProjectUri = 'https://github.com/nightroman/Mdbc'
            LicenseUri = 'http://www.apache.org/licenses/LICENSE-2.0'
            ReleaseNotes = 'https://github.com/nightroman/Mdbc/blob/main/Release-Notes.md'
        }
    }
}