|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<!-- Use a manifest so we'll always get the newest common controls library. |
| 3 | + See the "Application Manifests" article for more info: http://msdn.microsoft.com/en-us/library/aa374191.aspx --> |
| 4 | +<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"> |
| 5 | + <assemblyIdentity name="Diff.Net" version="4.0.0.0" /> |
| 6 | + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> |
| 7 | + <security> |
| 8 | + <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> |
| 9 | + <!-- UAC Manifest Options |
| 10 | + If you want to change the Windows User Account Control level replace the |
| 11 | + requestedExecutionLevel node with one of the following. |
| 12 | +
|
| 13 | + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> |
| 14 | + <requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> |
| 15 | + <requestedExecutionLevel level="highestAvailable" uiAccess="false" /> |
| 16 | +
|
| 17 | + Specifying requestedExecutionLevel node will disable file and registry virtualization. |
| 18 | + If you want to utilize File and Registry Virtualization for backward |
| 19 | + compatibility then delete the requestedExecutionLevel node. |
| 20 | + --> |
| 21 | + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> |
| 22 | + </requestedPrivileges> |
| 23 | + </security> |
| 24 | + </trustInfo> |
| 25 | + |
| 26 | + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> |
| 27 | + <application> |
| 28 | + <!-- A list of all Windows versions that this application is designed to work with. |
| 29 | + Windows will automatically select the most compatible environment.--> |
| 30 | + |
| 31 | + <!-- Windows Vista --> |
| 32 | + <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS> |
| 33 | + |
| 34 | + <!-- Windows 7 --> |
| 35 | + <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> |
| 36 | + |
| 37 | + <!-- Windows 8 --> |
| 38 | + <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS> |
| 39 | + |
| 40 | + <!-- Windows 8.1 --> |
| 41 | + <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> |
| 42 | + |
| 43 | + <!-- Windows 10 --> |
| 44 | + <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> |
| 45 | + </application> |
| 46 | + </compatibility> |
| 47 | + |
| 48 | + <!-- Enable themes for Windows common controls and dialogs (Windows XP and later) --> |
| 49 | + <dependency> |
| 50 | + <dependentAssembly> |
| 51 | + <assemblyIdentity |
| 52 | + type="win32" |
| 53 | + name="Microsoft.Windows.Common-Controls" |
| 54 | + version="6.0.0.0" |
| 55 | + processorArchitecture="*" |
| 56 | + publicKeyToken="6595b64144ccf1df" |
| 57 | + language="*" |
| 58 | + /> |
| 59 | + </dependentAssembly> |
| 60 | + </dependency> |
| 61 | + |
| 62 | +</asmv1:assembly> |
0 commit comments