PwrPatch.psd1

@{
    ## Module Info
    ModuleVersion      = '0.0.2'
    Description        = 'Patch WinUI MSIX'
    GUID               = '{ace523df-381c-4bc9-afdb-16a00f251ea6}'
    HelpInfoURI        = 'https://github.com/microsoft/PwrPatch'

    ## Module Components
    RootModule         = @("PwrPatch.psm1")
    ScriptsToProcess   = @()
    TypesToProcess     = @()
    FormatsToProcess   = @()
    FileList           = @()

    ## Public Interface
    CmdletsToExport    = ''
    FunctionsToExport  = @(
        "Execute-Razzle",
        "Get-BuildErrors",
        "Edit-BuildErrors")
    VariablesToExport  = @()
    AliasesToExport    = @("")
    # DscResourcesToExport = @()
    # DefaultCommandPrefix = ''

    ## Requirements
    # CompatiblePSEditions = @()
    PowerShellVersion      = '3.0'
    # PowerShellHostName = ''
    # PowerShellHostVersion = ''
    RequiredModules        = @()
    RequiredAssemblies     = @()
    ProcessorArchitecture  = 'None'
    DotNetFrameworkVersion = '2.0'
    CLRVersion             = '2.0'

    ## Author
    Author             = 'https://github.com/microsoft'
    CompanyName        = ''
    Copyright          = ''

    ## Private Data
    PrivateData        = @{
        PSData = @{
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @("productivity","patch","VS","msix", "WinUI", "ProjectReunion")

            # A URL to the license for this module.
            # LicenseUri = ''

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

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

            # ReleaseNotes of this module
            ReleaseNotes = @"
## 2020-10-12 - Version 0.0.2
 
Upgrade .NET Core SDK
 
## 2020-10-11 - Version 0.0.1
 
Initial release
 
"@

        } # End of PSData hashtable
    } # End of PrivateData hashtable
}