Mind you: unsupported/untested for v2.6
In v3, we added the following to the llblgenpro.exe.config file:
<startup>
<!-- .NET 4.0 specific
====================
if the designer has to run on .NET 4.0 due to add-ins/plugins/other assemblies ran which are natively compiled against .NET 4.0
please uncomment the following line. -->
<!--<supportedRuntime version="v4.0.30319"/>-->
</startup>
<runtime>
<!-- .NET 4.0 specific
====================
if the designer has to run on .NET 4.0 due to add-ins/plugins/other assemblies ran which are natively compiled against .NET 4.0
please uncomment the following line. -->
<!--<legacyCasPolicy enabled="true" />-->
the lines are commented out here, so you have to uncomment them and make sure the config file has the proper end tags for the elements. There's likely already a <startup> element, so you can ust add the supported runtime element and remove the other ones there.