-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEnvVar.psd1
44 lines (23 loc) · 888 Bytes
/
EnvVar.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@{
RootModule = 'EnvVar.psm1'
ModuleVersion = '0.1.0'
GUID = '48004ebf-fec1-48ae-9430-aba9ffead502'
Author = 'GNQG'
Copyright = '(c) 2019 @GNQG.'
Description = 'Handles environment variables, supporting variable expansion'
PowerShellVersion = '3.0'
FunctionsToExport = @("Get-EnvironmentVariable", "Set-EnvironmentVariable")
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
# FileList = @()
PrivateData = @{
PSData = @{
Tags = @("environment", "envvar", "env", "path", "windows", "registry")
LicenseUri = 'https://github.com/GNQG/pwsh-EnvVar/blob/master/LICENSE'
ProjectUri = 'https://github.com/GNQG/pwsh-EnvVar'
# ReleaseNotes = ''
}
}
# HelpInfoURI = ''
}