A
Alex
Hello,
We have several MS-Word add-ins that we'd like to be theme-aware.
Is it possible to create a single WinWord.exe.manifest that will apply to _any_ add-in that loads into MS-Word?
Alternatively, can I create a manifest that will apply to several add-ins?
Can I make it version neutral?
My current manifest (below) hardcodes the add-in name and version.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.1.0.15"
processorArchitecture="X86"
name="Company.Product.Module"
type="win32" />
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*" />
</dependentAssembly>
</dependency>
</assembly>
Thank you,
Alex.
We have several MS-Word add-ins that we'd like to be theme-aware.
Is it possible to create a single WinWord.exe.manifest that will apply to _any_ add-in that loads into MS-Word?
Alternatively, can I create a manifest that will apply to several add-ins?
Can I make it version neutral?
My current manifest (below) hardcodes the add-in name and version.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.1.0.15"
processorArchitecture="X86"
name="Company.Product.Module"
type="win32" />
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*" />
</dependentAssembly>
</dependency>
</assembly>
Thank you,
Alex.