Strong named dlls, problem with registering #3050
-
Hi! We are working with add-ins to a CAD application. We have two different add-ins in two different folders. These two add-ins are loading a common dll that exists in each add-in direcory. We use this method in Prism: containerRegistry.RegisterDialog<xxxView, xxxViewModel>(); The common dll is strong named, and the versions are different. The issue for us seems to be that Prism will load only the first dll. How can we register our second view/viewmodel successfully? Kind regards, Pontus |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It's not Prism that is loading the assemblies in your CAD extension, it's the CAD application itself. You'll have this problem regardless of if you use Prism or not. You should reach out to the CAD application devs and ask how to handle this scenario. |
Beta Was this translation helpful? Give feedback.
It's not Prism that is loading the assemblies in your CAD extension, it's the CAD application itself. You'll have this problem regardless of if you use Prism or not. You should reach out to the CAD application devs and ask how to handle this scenario.