diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-21 11:43:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-21 11:43:00 (GMT) |
commit | 5709ed46ce9b53ea3d2f46076b8e07cc5324fa55 (patch) | |
tree | 70d1850189b0f95419ba273ce43bca5cc8b2bd4f /win/tclsh.exe.manifest.in | |
parent | b89b27df4236a887798a52aadfb9f9641631b5dd (diff) | |
download | tcl-5709ed46ce9b53ea3d2f46076b8e07cc5324fa55.zip tcl-5709ed46ce9b53ea3d2f46076b8e07cc5324fa55.tar.gz tcl-5709ed46ce9b53ea3d2f46076b8e07cc5324fa55.tar.bz2 |
Add support for Windows 8.1: See [http://msdn.microsoft.com/en-us/library/windows/desktop/dn302074.aspx]
Diffstat (limited to 'win/tclsh.exe.manifest.in')
-rw-r--r-- | win/tclsh.exe.manifest.in | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/win/tclsh.exe.manifest.in b/win/tclsh.exe.manifest.in new file mode 100644 index 0000000..aaa34e1 --- /dev/null +++ b/win/tclsh.exe.manifest.in @@ -0,0 +1,33 @@ +<?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 + version="@TCL_WIN_VERSION@" + processorArchitecture="@MACHINE@" + name="Tcl.tclsh" + type="win32" + /> + <description>Tcl command line shell (tclsh)</description> + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> + <security> + <requestedPrivileges> + <requestedExecutionLevel + level="asInvoker" + uiAccess="false" + /> + </requestedPrivileges> + </security> + </trustInfo> + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> + <application> + <!-- Windows 8.1 --> + <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> + <!-- Windows 8 --> + <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> + <!-- Windows 7 --> + <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> + <!-- Windows Vista --> + <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> + </application> + </compatibility> +</assembly> |