Limitations when rendering CAD drawings
Leave feedback
TipThis limitation exists in the 20.6.1 version and earlier. Do not set an assembly binding redirect if you use version 20.7 or later.
When rendering CAD drawings using GroupDocs.Viewer, it is required to add the assembly binding redirect to the app.config or web.config project files. The following example shows the required assembly binding redirect to render CAD drawings with GroupDocs.Viewer for .NET 20.6.1 and earlier.
<configuration>
<!--...-->
<runtime>
<!--...-->
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<!--...-->
<dependentAssembly>
<assemblyIdentity name="Aspose.PDF" publicKeyToken="716fcc553a201e56" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-20.5.0.0" newVersion="20.5.0.0"/>
<publisherPolicy apply="no"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.