yuzu.manifest 2.0 KB

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