Theme.PSStyle.psd1
@{ # Version number of this module. ModuleVersion = '0.1.0' PrivateData = @{ PSData = @{ # The prerelease portion of a semantic version. Blank for releases Prerelease = 'psstyle0001' ReleaseNotes = '' Tags = @('Theme', 'Scheme', 'Colors', 'EzTheme') # LicenseUri = '' # ProjectUri = '' # IconUri = '' # Modules that aren't in the same PowerShellGallery # ExternalModuleDependencies = @() } # End of PSData hashtable 'EzTheme' = @{ Get = 'Get-PSStyleTheme' Set = 'Set-PSStyleTheme' } } # End of PrivateData hashtable Description = 'EzTheme module for modern PowerShell via PSStyle' FunctionsToExport = @('Get-PSStyleTheme','Set-PSStyleTheme') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() FormatsToProcess = @('PSStyle.format.ps1xml') RequiredModules = @("Pansies") # Script module or binary module file associated with this manifest. RootModule = 'Theme.PSStyle.psm1' GUID = '402dd612-fa1b-46a9-b22f-2ab5d803714f' Author = "Joel 'Jaykul' Bennett" CompanyName = 'PoshCode.org' Copyright = '(c) Joel Bennett 2020. All rights reserved.' CompatiblePSEditions = @('Desktop', 'Core') # Minimum version of PowerShell required by this module PowerShellVersion = '7.2' # HelpInfoURI = '' } |