suyu.manifest 1.8 KB

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