/ tools / module_loader / ModuleLoader.manifest
ModuleLoader.manifest
 1  <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 2  <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
 3    <assemblyIdentity
 4        version="1.0.0.0"
 5        processorArchitecture="*"
 6        name="Microsoft.PowerToys.ModuleLoader"
 7        type="win32"
 8    />
 9    <description>PowerToys Module Loader - Standalone module testing utility</description>
10    
11    <!-- Per-Monitor DPI Awareness V2 -->
12    <application xmlns="urn:schemas-microsoft-com:asm.v3">
13      <windowsSettings>
14        <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>
15        <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
16      </windowsSettings>
17    </application>
18    
19    <!-- Request administrator execution level if needed -->
20    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
21      <security>
22        <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
23          <requestedExecutionLevel level="asInvoker" uiAccess="false" />
24        </requestedPrivileges>
25      </security>
26    </trustInfo>
27    
28    <!-- Windows 10+ compatibility -->
29    <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
30      <application>
31        <!-- Windows 10 -->
32        <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
33        <!-- Windows 11 -->
34        <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9b}"/>
35      </application>
36    </compatibility>
37  </assembly>