-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathVCVars.psd1
47 lines (40 loc) · 2 KB
/
VCVars.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
45
46
47
@{
RootModule = 'VCVars.psm1'
ModuleVersion = '1.0'
GUID = '6fc7ca16-9e2f-4c83-bc46-99474fdd06f6'
Author = 'Isabella Muerte'
CompanyName = 'Unknown'
Copyright = '(c) 2017 Isabella Muerte. All rights reserved.'
Description = 'Visual C++ Environment Variable Management Module'
PowerShellVersion = '5.0'
RequiredModules = @('VSSetup')
# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()
AliasesToExport = @('vcvars', 'pushvc', 'popvc', 'setvc')
FunctionsToExport = @(
'Invoke-VCVars',
'Clear-VCVars',
'Find-VCVars',
'Push-VCVars',
'Pop-VCVars',
'Set-VCVars'
)
VariablesToExport = '*'
CmdletsToExport = '*'
# List of all files packaged with this module
# FileList = @()
PrivateData = @{
PSData = @{
Tags = @(
'vcvars',
'c++',
'msvc',
'environment'
)
# LicenseUri = ''
ProjectUri = 'https://github.com/slurps-mad-rips/VCVars'
}
}
# HelpInfo URI of this module
# HelpInfoURI = ''
}