yuzu.manifest 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. </application>
  38. </compatibility>
  39. <trustInfo
  40. xmlns="urn:schemas-microsoft-com:asm.v3">
  41. <security>
  42. <requestedPrivileges>
  43. <!--
  44. UAC settings:
  45. - app should run at same integrity level as calling process
  46. - app does not need to manipulate windows belonging to
  47. higher-integrity-level processes
  48. -->
  49. <requestedExecutionLevel
  50. level="asInvoker"
  51. uiAccess="false"
  52. />
  53. </requestedPrivileges>
  54. </security>
  55. </trustInfo>
  56. </assembly>