Context.psd1
@{ RootModule = 'Context.psm1' ModuleVersion = '7.0.0' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'b87757b1-54a4-452b-936b-5264c4c6f08b' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module that manages contexts with secrets and variables.' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' RequiredModules = @( @{ RequiredVersion = '2.1.1' ModuleName = 'Sodium' } ) TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'Get-Context' 'Remove-Context' 'Rename-Context' 'Set-Context' ) 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' Prerelease = 'sodiumIntegration001' } } } |