OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | 1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | 2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> |
3 | 3 |
4 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | 4 <!--The compatibility section will be merged from build/win/compatibility.mani
fest --> |
5 <application> | 5 |
6 <!--The ID below indicates application support for Windows Vista --> | |
7 <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | |
8 <!--The ID below indicates application support for Windows 7 --> | |
9 <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | |
10 <!--The ID below indicates application support for Windows 8 --> | |
11 <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | |
12 <!--The ID below indicates application support for Windows 8.1 --> | |
13 <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> | |
14 </application> | |
15 </compatibility> | |
16 | |
17 <dependency> | 6 <dependency> |
18 <dependentAssembly> | 7 <dependentAssembly> |
19 <assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" ve
rsion="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" lang
uage="*"></assemblyIdentity> | 8 <assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" ve
rsion="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" lang
uage="*"></assemblyIdentity> |
20 </dependentAssembly> | 9 </dependentAssembly> |
21 </dependency> | 10 </dependency> |
22 | 11 |
23 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | 12 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> |
24 <security> | 13 <security> |
25 <requestedPrivileges> | 14 <requestedPrivileges> |
26 <requestedExecutionLevel level="asInvoker" /> | 15 <requestedExecutionLevel level="asInvoker" /> |
27 </requestedPrivileges> | 16 </requestedPrivileges> |
28 </security> | 17 </security> |
29 </trustInfo> | 18 </trustInfo> |
30 | 19 |
31 </assembly> | 20 </assembly> |
OLD | NEW |