-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathModuleManifest.psd1
More file actions
29 lines (29 loc) · 2.24 KB
/
ModuleManifest.psd1
File metadata and controls
29 lines (29 loc) · 2.24 KB
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
@{
RootModule = "DeviceManager.dll"
ModuleVersion = {0}
CompatiblePSEditions = @("Core", "Desktop")
GUID = '26dc6923-09eb-4c27-89c7-3194192f1a21'
Author = 'MartinGC94'
CompanyName = 'Unknown'
Copyright = '(c) 2026 MartinGC94. All rights reserved.'
Description = 'Manage devices and device drivers for Windows.'
PowerShellVersion = '5.1'
RequiredAssemblies = if ($PSEdition -eq "Desktop") {"DeviceManager.dll"} else {$null}
TypesToProcess = @({1})
FormatsToProcess = @({2})
FunctionsToExport = @()
CmdletsToExport = @({3})
VariablesToExport = @()
AliasesToExport = @({4})
DscResourcesToExport = @()
FileList = @({5})
PrivateData = @{
PSData = @{
Tags = @("Device", "Driver", "Install", "Uninstall", "Config", "Settings")
ProjectUri = 'https://github.com/MartinGC94/DeviceManager'
ReleaseNotes = @'
{6}
'@
}
}
}