Last active
June 28, 2019 21:27
-
-
Save bjornblissing/3155d62ad807d0b29410 to your computer and use it in GitHub Desktop.
Manifest to tell Windows that the application is DPI aware (needed for Windows 8.1 and up)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
<application xmlns="urn:schemas-microsoft-com:asm.v3"> | |
<windowsSettings> | |
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware> | |
</windowsSettings> | |
</application> | |
</assembly> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More information can be found in the following MSDN article:
PROCESS_DPI_AWARENESS enumeration