diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-03-25 08:47:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-03-25 08:47:06 (GMT) |
commit | b538cddb15fe7c5adca98283566bdd359126e08a (patch) | |
tree | 865d750daacc463f1f6886ff4d1e3b315b1b6ae4 /win/wish.exe.manifest.in | |
parent | e3cc01895622b0949e83b829d84a4cb1fbedce4f (diff) | |
download | tk-b538cddb15fe7c5adca98283566bdd359126e08a.zip tk-b538cddb15fe7c5adca98283566bdd359126e08a.tar.gz tk-b538cddb15fe7c5adca98283566bdd359126e08a.tar.bz2 |
Fix [Bug 1871101].
Diffstat (limited to 'win/wish.exe.manifest.in')
-rw-r--r-- | win/wish.exe.manifest.in | 47 |
1 files changed, 27 insertions, 20 deletions
diff --git a/win/wish.exe.manifest.in b/win/wish.exe.manifest.in index 236768e..2cae0c0 100644 --- a/win/wish.exe.manifest.in +++ b/win/wish.exe.manifest.in @@ -1,22 +1,29 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> -<assemblyIdentity - version="@TK_WIN_VERSION@" - processorArchitecture="@MACHINE@" - name="Tcl.Tk.wish" - type="win32" -/> -<description>Tcl/Tk windowing shell (wish)</description> -<dependency> -<dependentAssembly> -<assemblyIdentity - type="win32" - name="Microsoft.Windows.Common-Controls" - version="6.0.0.0" - processorArchitecture="@MACHINE@" - publicKeyToken="6595b64144ccf1df" - language="*" -/> -</dependentAssembly> -</dependency> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" + xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> + <assemblyIdentity + version="@TK_WIN_VERSION@" + processorArchitecture="@MACHINE@" + name="Tcl.Tk.wish" + type="win32" + /> + <description>Tcl/Tk windowing shell (wish)</description> + <asmv3:application> + <asmv3:windowsSettings + xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> + <dpiAware>true</dpiAware> + </asmv3:windowsSettings> + </asmv3:application> + <dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + processorArchitecture="@MACHINE@" + publicKeyToken="6595b64144ccf1df" + language="*" + /> + </dependentAssembly> + </dependency> </assembly> |