You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.manifest 1.4 kB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
  3. <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
  4. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
  5. <security>
  6. <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
  7. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  8. </requestedPrivileges>
  9. </security>
  10. </trustInfo>
  11. <asmv3:application>
  12. <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
  13. <dpiAware>True/PM</dpiAware>
  14. </asmv3:windowsSettings>
  15. </asmv3:application>
  16. <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
  17. <!-- We specify these, in addition to the UAC above, so we avoid Program Compatibility Assistant in Vista and Win7 -->
  18. <!-- We try to avoid PCA so we can use Windows Job Objects -->
  19. <!-- See http://stackoverflow.com/questions/3342941/kill-child-process-when-parent-process-is-killed -->
  20. <application>
  21. <!--The ID below indicates application support for Windows Vista -->
  22. <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
  23. <!--The ID below indicates application support for Windows 7 -->
  24. <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
  25. </application>
  26. </compatibility>
  27. </assembly>