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="HackerNewsExtension.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 10. 8 It is necessary to support features in unpackaged applications, for example the custom titlebar implementation. 9 For more info see https://docs.microsoft.com/windows/apps/windows-app-sdk/use-windows-app-sdk-run-time#declare-os-compatibility-in-your-application-manifest --> 10 <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" /> 11 </application> 12 </compatibility> 13 14 <application xmlns="urn:schemas-microsoft-com:asm.v3"> 15 <windowsSettings> 16 <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware> 17 <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness> 18 </windowsSettings> 19 </application> 20 </assembly>