-
Notifications
You must be signed in to change notification settings - Fork 2
/
ModuleManifest.psd1
29 lines (29 loc) · 2.38 KB
/
ModuleManifest.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
@{
RootModule = "DisplayConfig.dll"
ModuleVersion = {0}
CompatiblePSEditions = @("Core", "Desktop")
GUID = '869da43f-8ec3-4ee1-8820-f531dbc455d6'
Author = 'MartinGC94'
CompanyName = 'Unknown'
Copyright = '(c) 2024 MartinGC94. All rights reserved.'
Description = 'Manage Windows display settings like resolution, DPI scale, HDR and more.'
PowerShellVersion = '5.1'
RequiredAssemblies = if ($PSEdition -eq "Desktop") {"DisplayConfig.dll"} else {$null}
TypesToProcess = @({1})
FormatsToProcess = @({2})
FunctionsToExport = @()
CmdletsToExport = @({3})
VariablesToExport = @()
AliasesToExport = @()
DscResourcesToExport = @()
FileList = @({4})
PrivateData = @{
PSData = @{
Tags = @("Display", "Monitor", "Settings","Options","Configuration", "Resolution", "DPI", "Scale", "HDR", "Rotation")
ProjectUri = 'https://github.com/MartinGC94/DisplayConfig'
ReleaseNotes = @'
{5}
'@
}
}
}