mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
* convert to console application without window, so the user sees all status messages in the order of appearance * include SysUtils unit, which increases file size to ~2MB, but enhances maintainability * restrict compilation and resource inclusion to 64bit mode - the build updater is disabled in 32bit mode anyway
22 lines
766 B
XML
22 lines
766 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<assemblyIdentity
|
|
version="0.0.0.0"
|
|
processorArchitecture="*"
|
|
name="HeidiSQL"
|
|
type="win32" />
|
|
<description>HeidiSQL build updater</description>
|
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
|
<security>
|
|
<requestedPrivileges>
|
|
<requestedExecutionLevel level="requireAdministrator"/>
|
|
</requestedPrivileges>
|
|
</security>
|
|
</trustInfo>
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" />
|
|
</dependentAssembly>
|
|
</dependency>
|
|
</assembly> |