diff options
Diffstat (limited to '')
-rw-r--r-- | src/gvim.exe.mnf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/gvim.exe.mnf b/src/gvim.exe.mnf new file mode 100644 index 0000000..dd8f225 --- /dev/null +++ b/src/gvim.exe.mnf @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" > + <assemblyIdentity + processorArchitecture="*" + version="8.1.0.0" + type="win32" + name="Vim" + /> + <description>Vi Improved - A Text Editor</description> + <dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + publicKeyToken="6595b64144ccf1df" + language="*" + processorArchitecture="*" + /> + </dependentAssembly> + </dependency> + <!-- Vista security requirements --> + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> + <security> + <requestedPrivileges> + <requestedExecutionLevel + level="asInvoker" + uiAccess="false"/> + </requestedPrivileges> + </security> + </trustInfo> + <!-- Vista High DPI aware --> + <asmv3:application> + <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> + <dpiAware>true</dpiAware> + </asmv3:windowsSettings> + </asmv3:application> +</assembly> |