cbsch-pslib.psd1

@{
RootModule = 'script/cbsch-pslib.psm1'
ModuleVersion = '1.0.14'
GUID = '1dcadff2-5493-44a8-af48-e95dae9c0fa2'
Author = 'Christopher Berg Schwanstrøm'
CompanyName = 'cbsch.no'
Copyright = '(c) Christopher. All rights reserved.'
Description = 'Various helpful cmdlets and functions'

RequiredAssemblies = 'bin\cbsch-pslib.dll'

# StartGenerated
FunctionsToExport = @(
    "Get-DecryptedString",
    "Get-EncryptedString",
    "Get-StoredCredential",
    "Save-StoredCredential",
    "Show-StoredCredential",
    "Set-WindowState"
)

CmdletsToExport = @(
    "Find-Mail",
    "Get-DotnetTest",
    "Invoke-SieveFilter",
    "Invoke-DnsQuery",
    "Start-WebServer",
    "Test-Async",
    "Test-DotnetTest"
)
# EndGenerated

AliasesToExport = 'gsc'

PrivateData = @{
    PSData = @{
    }
}
}