CSharpOperators.psd1

@{

    # RootModule = ""

    ModuleVersion     = "2.0.0"

    # CompatiblePSEditions = @()

    GUID              = "de1e452b-50ea-4646-b0dd-a87b69997f6f"

    Author            = "Anthony J. Raymond"

    # CompanyName = ""

    Copyright         = "(c) 2022 Anthony J. Raymond"

    Description       = "Impliments the Ternary (?:) and Null-coalescing (??) operators using the pipeline."

    # PowerShellVersion = ""

    # PowerShellHostName = ""

    # PowerShellHostVersion = ""

    # DotNetFrameworkVersion = ""

    # CLRVersion = ""

    # ProcessorArchitecture = ""

    # RequiredModules = @()

    # RequiredAssemblies = @()

    # ScriptsToProcess = @()

    # TypesToProcess = @()

    # FormatsToProcess = @()

    NestedModules     = @(
        "Use-Ternary"
        "Use-NullCoalescing"
    )

    FunctionsToExport = @(
        "Use-Ternary"
        "Use-NullCoalescing"
    )

    CmdletsToExport   = @()

    VariablesToExport = ""

    AliasesToExport   = @(
        "?:"
        "??"
    )

    # DscResourcesToExport = @()

    # ModuleList = @()

    # FileList = @()

    PrivateData       = @{

        PSData = @{

            Tags         = @(
                "operators"
                "ternary"
                "?:"
                "null-coalescing"
                "??"
                "c#"
                "csharp"
            )

            LicenseUri   = "https://github.com/CodeAJGit/posh/blob/master/LICENSE"

            ProjectUri   = "https://github.com/CodeAJGit/posh"

            # IconUri = ""

            ReleaseNotes =
            @"
**DEPRECATED**
 
    The Use-Ternary and Use-NullCoalescing cmdlets have been integrated into the ScriptFramework module. These cmdlets will no longer be supported or updated as a seperate module.
"@


        }

    }

    # HelpInfoURI = ""

    # DefaultCommandPrefix = ""

}