Search
Registration-free deployment

Distribution includes manifest files for side-by-side / registration free deployment. MindFusion.Diagramming.32bit.manifest describes the 32-bit version of the component, and MindFusion.Diagramming.64bit.manifest describes the 64-bit version. To load the component without registering it, add a dependentAssembly entry to your application's manifest:

manifest  Copy Code

<?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="*"
     name="app.exe"
     type="win32"
  /> 
  <dependency>
    <dependentAssembly>
      <assemblyIdentity
        type="win32"
        name="MindFusion.Diagramming.32bit"
        version="4.9.6.0"
        processorArchitecture="x86"
        language="*"
      />
    </dependentAssembly>
 </dependency>
</assembly>