77d8926126
In section "dependency" use "*" in processorArchitecture instead of specifying the concrete architecture such as "amd64" or "x86". This allows to have just one manifest for all architectures instead of having them for all supported architectures individually differing in just processorArchitecture.
23 lines
634 B
XML
23 lines
634 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.64.1.0"
|
|
processorArchitecture="x86"
|
|
name="Controls"
|
|
type="win32"
|
|
/>
|
|
<description>wxWidgets application</description>
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity
|
|
type="win32"
|
|
name="Microsoft.Windows.Common-Controls"
|
|
version="6.0.0.0"
|
|
processorArchitecture="*"
|
|
publicKeyToken="6595b64144ccf1df"
|
|
language="*"
|
|
/>
|
|
</dependentAssembly>
|
|
</dependency>
|
|
</assembly>
|