PSBluetoothState.psd1

@{
    RootModule           = 'PSBluetoothState.psm1'
    ModuleVersion        = '1.0.0'
    CompatiblePSEditions = @('Core', 'Desktop')
    GUID                 = 'f21556f6-00c2-4fa3-85cf-f5e2f235a401'
    Author               = 'Philipp Grießer'
    CompanyName          = ''
    Copyright            = ''
    Description          = 'Gets and changes the Windows Bluetooth radio state.'
    PowerShellVersion    = '5.1'
    FunctionsToExport    = @(
        'Get-BluetoothState',
        'Set-BluetoothState'
    )
    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @()
    PrivateData          = @{
        PSData = @{
            Tags = @('Bluetooth', 'Windows', 'Radio')
            ProjectUri = 'https://github.com/pgriesser/PSBluetoothState'
        }
    }
}