Posted 16 years ago
by Jon von Gillern
If anyone happens to have problems (which you will) when you try to reference the SyntaxEditor dlls, but with the newest version of the ActiproSoftware.Shared.Wpf30 dlls (which is currently 4.5.486.0), simply add the appropriate sections to your app.config and your problems should disappear.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ActiproSoftware.Shared.Wpf30" publicKeyToken="36ff2196ab5654b9"/>
<bindingRedirect oldVersion="1.0.0.0-65535.65535.65535.65535" newVersion="4.5.486.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
[Modified at 03/16/2009 09:24 PM]
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ActiproSoftware.Shared.Wpf30" publicKeyToken="36ff2196ab5654b9"/>
<bindingRedirect oldVersion="1.0.0.0-65535.65535.65535.65535" newVersion="4.5.486.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
[Modified at 03/16/2009 09:24 PM]