ErrorView.psd1

@{
    Description          = 'Enhances formatting of Errors, and provides compatibility for older versions of PowerShell'
    GUID                 = '5857f85c-8a0a-44e1-8da5-c8ff352167e0'
    Author               = 'Joel Bennett'
    CompanyName          = 'PoshCode'

    ModuleToProcess      = 'ErrorView.psm1'
    ModuleVersion        = '1.0.0'

    Copyright            = '(c) Joel Bennett. All rights reserved.'

    FunctionsToExport    = @('ConvertTo-CategoryErrorView','ConvertTo-ConciseErrorView','ConvertTo-DetailedErrorView','ConvertTo-FullErrorView','ConvertTo-NormalErrorView','ConvertTo-NormalExceptionView','ConvertTo-SimpleErrorView','ConvertTo-YamlErrorView','Format-Error','Format-String','Measure-String','Set-ErrorView')

    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @('fe','WrapString','sev')

    PrivateData = @{
        PSData = @{
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @("ErrorView")

            # A URL to the license for this module.
            LicenseUri = "http://opensource.org/licenses/MIT"

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/poshcode/errorview'

            # A URL to an icon representing this module.
            # IconUri = ''

            # ReleaseNotes of this module
            ReleaseNotes = 'ErrorView v1.0.0-seven0017+Build.local.Sha.55fcab06621cc1b968e431ad6c35d3e1a8830c0a.Date.20250523T163339
I wrote this module to enhance ErrorViews for PowerShell (without waiting for PS7+)'

            Prerelease   = 'seven0017'
        } # End of PSData hashtable

    } # End of PrivateData hashtable

}