Goswin
1
Is it OK to add .NET Binding Redirects to the ‘Rhino.exe.config’ file?
For binary backwards compatible dlls like FSharp.Core.
Let’s say my plugin needs the latest version of FSharp.Core while another plugin loads an older version.
Like described here: Crashing Rhino on Load · Issue #2 · goswinr/Fesh.Rhino · GitHub
Will such changes get lost when updating Rhino?
Is it OK if a plugin installer does that?
1 Like
nathanletwory
(Nathan 'jesterKing' Letwory)
2
@curtisw , @brian does either one of you know if this gets overwritten on updates?
jstevenson
(Jason Stevenson)
3
Goswin,
I’m not familiar with F#, but we do some custom assembly resolution in our plugin using an AppDomain AssemblyResolve event.
Maybe that would work for you guys, without having to rely on the config file.
AppDomain.CurrentDomain.AssemblyResolve += OnResolveAssembly;
1 Like