mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-18 12:47:56 +01:00
Files
fix-fancy-zones-ui-tests-#42249
38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|||
<assemblyIdentity
|
|||
version="1.0.0.0"
|
|||
processorArchitecture="*"
|
|||
name="Microsoft.PowerToys.ModuleLoader"
|
|||
type="win32"
|
|||
/>
|
|||
<description>PowerToys Module Loader - Standalone module testing utility</description>
|
|||
|
|||
<!-- Per-Monitor DPI Awareness V2 -->
|
|||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
|||
<windowsSettings>
|
|||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>
|
|||
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
|
|||
</windowsSettings>
|
|||
</application>
|
|||
|
|||
<!-- Request administrator execution level if needed -->
|
|||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
|||
<security>
|
|||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
|||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
|||
</requestedPrivileges>
|
|||
</security>
|
|||
</trustInfo>
|
|||
|
|||
<!-- Windows 10+ compatibility -->
|
|||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
|||
<application>
|
|||
<!-- Windows 10 -->
|
|||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
|||
<!-- Windows 11 -->
|
|||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9b}"/>
|
|||
</application>
|
|||
</compatibility>
|
|||
</assembly>
|