Win11ToWin10UI.psd1

@{
    RootModule = 'Win11ToWin10UI.dll'
    ModuleVersion = '1.0.2'
    GUID = '4a6db486-526f-42c1-a6f2-a98902b4ab77'
    Author = 'Arksoft Bilisim'
    CompanyName = 'Arksoft Bilisim'
    Description = 'Restores Windows 11 UI to a Windows 10-like layout with registry and policy changes, including backup and restore.'
    PowerShellVersion = '5.1'
    ClrVersion = '4.0'
    DotNetFrameworkVersion = '4.7.2'
    CompatiblePSEditions = @('Desktop')

    CmdletsToExport   = @('Set-Win10StyleUI','Restore-Win10StyleUI','Backup-Win10StyleUI')
    FunctionsToExport = @()
    AliasesToExport   = @()

    FileList = @('Win11ToWin10UI.dll','readme.txt')

    PrivateData = @{
        PSData = @{
            Tags        = @('Windows11','Windows10','UI','Registry','Customization')
            LicenseUri  = 'https://opensource.org/licenses/MIT'
            ProjectUri  = 'https://github.com/direnconen/Win11ToWin10UI'
            ReleaseNotes= 'v1.0.2 - Added readme.txt for gallery help documentation'
        }
    }
}