Context.psd1
@{ RootModule = 'Context.psm1' ModuleVersion = '2.0.0' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'e516191c-eb9f-4a2e-b8f9-162bf7265766' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2024 PSModule. All rights reserved.' Description = 'A PowerShell module that manages contexts with secrets and variables.' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' RequiredModules = @( @{ ModuleName = 'DynamicParams' RequiredVersion = '1.1.8' } @{ ModuleName = 'Microsoft.PowerShell.SecretManagement' RequiredVersion = '1.1.2' } @{ ModuleName = 'Microsoft.PowerShell.SecretStore' RequiredVersion = '1.0.6' } ) RequiredAssemblies = @() ScriptsToProcess = @() TypesToProcess = @() FormatsToProcess = @() NestedModules = @() FunctionsToExport = @( 'Get-Context' 'Remove-Context' 'Set-Context' 'Get-ContextSetting' 'Remove-ContextSetting' 'Set-ContextSetting' ) CmdletsToExport = @() ModuleList = @() FileList = 'Context.psm1' PrivateData = @{ PSData = @{ Tags = @( 'context' 'Linux' 'MacOS' 'powershell' 'powershell-module' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Context/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Context' IconUri = 'https://raw.githubusercontent.com/PSModule/Context/main/icon/icon.png' } } } |