app.manifest
 1  <?xml version="1.0" encoding="utf-8"?>
 2  <assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
 3    <assemblyIdentity version="1.0.0.0" name="EnvironmentVariables.app"/>
 4  
 5    <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
 6      <application>
 7        <!--The ID below informs the system that this application is compatible with OS features first introduced in Windows 8. 
 8        For more info see https://docs.microsoft.com/windows/win32/sysinfo/targeting-your-application-at-windows-8-1 
 9        
10        It is also necessary to support features in unpackaged applications, for example the custom title bar implementation.-->
11        <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
12        <!-- Windows 10 -->
13        <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
14      </application>
15    </compatibility>
16    
17    <application xmlns="urn:schemas-microsoft-com:asm.v3">
18      <windowsSettings>
19        <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
20      </windowsSettings>
21    </application>
22  </assembly>