WinLauncher.exe.manifest 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  3. <assemblyIdentity
  4. version="1.0.0.0"
  5. processorArchitecture="X86"
  6. name="apple.WebKit.WinLauncher.exe"
  7. type="win32"
  8. />
  9. <description>WinLauncher Test Utility</description>
  10. <dependency>
  11. <dependentAssembly>
  12. <assemblyIdentity
  13. type="win32"
  14. name="Microsoft.Windows.Common-Controls"
  15. version="6.0.0.0"
  16. processorArchitecture="X86"
  17. publicKeyToken="6595b64144ccf1df"
  18. language="*"
  19. />
  20. </dependentAssembly>
  21. </dependency>
  22. <dependency>
  23. <dependentAssembly>
  24. <assemblyIdentity
  25. type="win32"
  26. name="Microsoft.VC80.CRT"
  27. version="8.0.50727.6195"
  28. processorArchitecture="x86"
  29. publicKeyToken="1fc8b3b9a1e18e3b"
  30. />
  31. </dependentAssembly>
  32. </dependency>
  33. <!-- Set application to run with user privilege but no virtualization. -->
  34. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
  35. <security>
  36. <requestedPrivileges>
  37. <requestedExecutionLevel
  38. level="asInvoker"
  39. uiAccess="false"
  40. />
  41. </requestedPrivileges>
  42. </security>
  43. </trustInfo>
  44. </assembly>