rhubarb-geek-nz.Console.psd1

@{
    CompanyName = 'rhubarb-geek-nz'
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            ProjectUri = 'https://github.com/rhubarb-geek-nz/Console'
            ReleaseNotes = 'Use current runspace for running record conversions'
        }
    }
    Copyright = 'Copyright © 2024 Roger Brown'
    RootModule = 'RhubarbGeekNz.Console.dll'
    ModuleVersion = '1.0.3'
    FunctionsToExport = '*'
    Description = 'Tools for reading and writing directly to stdin, stdout and stderr using the Console API'
    CmdletsToExport = @(
        'Read-Console',
        'Write-Console'
    )
    GUID = '8d420c23-a226-40ad-b177-d51da39c5452'
    Author = 'Roger Brown'
    VariablesToExport = '*'
}