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

app.manifest 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  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. <!-- UAC 資訊清單選項
  8. 如果您要變更 Windows 使用者帳戶控制層級,請將
  9. requestedExecutionLevel 節點取代為下列其中一項。
  10. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  11. <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
  12. <requestedExecutionLevel level="highestAvailable" uiAccess="false" />
  13. 指定 requestedExecutionLevel 節點將會停用檔案和登錄虛擬化。
  14. 如果您要針對回溯相容性使用檔案及登錄虛擬化,
  15. 請刪除 requestedExecutionLevel 節點。
  16. -->
  17. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  18. </requestedPrivileges>
  19. </security>
  20. </trustInfo>
  21. <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
  22. <application>
  23. <!-- 可配合此應用程式使用的所有 Windows 版本的清單。Windows 會自動選取最相容的環境。-->
  24. <!-- 如果您的應用程式是設計成配合 Windows 7 運作,請取消註解下列 supportedOS 節點-->
  25. <!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>-->
  26. </application>
  27. </compatibility>
  28. <!-- 啟用 Windows 通用控制項和對話方塊的佈景主題 (Windows XP 以後版本) -->
  29. <!-- <dependency>
  30. <dependentAssembly>
  31. <assemblyIdentity
  32. type="win32"
  33. name="Microsoft.Windows.Common-Controls"
  34. version="6.0.0.0"
  35. processorArchitecture="*"
  36. publicKeyToken="6595b64144ccf1df"
  37. language="*"
  38. />
  39. </dependentAssembly>
  40. </dependency>-->
  41. </asmv1:assembly>