yuzu.manifest 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <assembly manifestVersion="1.0"
  3. xmlns="urn:schemas-microsoft-com:asm.v1"
  4. xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  5. <asmv3:application>
  6. <asmv3:windowsSettings>
  7. <!-- Windows 7/8/8.1/10 -->
  8. <dpiAware
  9. xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
  10. true/pm
  11. </dpiAware>
  12. <!-- Windows 10, version 1607 or later -->
  13. <dpiAwareness
  14. xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
  15. PerMonitorV2
  16. </dpiAwareness>
  17. <!-- Windows 10, version 1703 or later -->
  18. <gdiScaling
  19. xmlns="http://schemas.microsoft.com/SMI/2017/WindowsSettings">
  20. true
  21. </gdiScaling>
  22. <ws2:longPathAware
  23. xmlns:ws3="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
  24. true
  25. </ws2:longPathAware>
  26. </asmv3:windowsSettings>
  27. </asmv3:application>
  28. <compatibility
  29. xmlns="urn:schemas-microsoft-com:compatibility.v1">
  30. <application>
  31. <!-- Windows 10 -->
  32. <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
  33. <!-- Windows 8.1 -->
  34. <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
  35. <!-- Windows 8 -->
  36. <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
  37. <!-- Windows 7 -->
  38. <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
  39. </application>
  40. </compatibility>
  41. <trustInfo
  42. xmlns="urn:schemas-microsoft-com:asm.v3">
  43. <security>
  44. <requestedPrivileges>
  45. <!--
  46. UAC settings:
  47. - app should run at same integrity level as calling process
  48. - app does not need to manipulate windows belonging to
  49. higher-integrity-level processes
  50. -->
  51. <requestedExecutionLevel
  52. level="asInvoker"
  53. uiAccess="false"
  54. />
  55. </requestedPrivileges>
  56. </security>
  57. </trustInfo>
  58. </assembly>