Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
If your application hosts a third-party DLL, extension, plug-in, or control panel, you may want to enable an assembly in your application—without also enabling this assembly for the hosted components. This can be the case when a hosted component requires code changes to use the assembly. As the application developer, you may be unable to make changes to these third-party components. In this case, you should follow the procedure described in this section so that your application can use the assembly without affecting the hosted components.
The following method can be used to add a manifest to an application or a hosted component that is a DLL, extension, plug-in, or control panel.
To enable an assembly in an application or hosted component.
Author a manifest that describes the dependence of the application or extension on the assembly.
For example, the manifest for "YourApplication" can be created by copying the following sample manifest and substituting correct values for assemblyIdentity, processorArchitecture, and description. Set the value of processorArchitecture to x86 if building on a 32-bit platform and to ia64 if building on a 64-bit platform. The description element contains an option description of the application. For more information about the manifest format, see application manifests.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="x86"
name="YourCompanyName.YourDivision.YourApp"
type="win32"
/>
<description>Your app description here</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Proseware.Research.SampleAssembly"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="0000000000000000"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
Create a resource in the application or extension of type RT_MANIFEST id 2.
For example, if the application's name is YourApp, the application should contain the following:
#define MANIFEST_RESOURCE_ID 2
MANIFEST_RESOURCE_ID RT_MANIFEST "YourApp.manifest"
Compile the application with the -DISOLATION_AWARE_ENABLED flag, or insert this statement before the #include "Windows.h" statement. In the case of an application with multiple modules, the -DISOLATION_AWARE_ENABLED flag is required on all modules.
#define ISOLATION_AWARE_ENABLED 1
Test to ensure that assemblies that are used by the application work correctly in the application and hosted component.
For more information about adding an assembly to applications without extensions, see Enabling an Assembly in an Application Without Extensions.
Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register today