env2.psd1
@{ RootModule = 'env2.psm1' Author = 'Trevor Sullivan <trevor@trevorsullivan.net>' CompanyName = 'Trevor Sullivan' ModuleVersion = '0.2' GUID = 'bbedb253-f2ad-4d5a-9b10-d9c3c0fca91c' Copyright = '2023-present Trevor Sullivan' Description = 'PowerShell module for modifying environment variables on the Windows platform.' PowerShellVersion = '6.0' CompatiblePSEditions = @('Core') FunctionsToExport = @( 'Add-EnvPath', 'Set-Env', 'Get-Env', 'Remove-EnvPath' ) AliasesToExport = @('') VariablesToExport = @('') PrivateData = @{ PSData = @{ Tags = @('windows', 'microsoft', 'environment', 'variables') LicenseUri = '' ProjectUri = 'https://github.com/pcgeek86' IconUri = '' ReleaseNotes = @' 0.1 - Initial release. '@ } } } |