Could not load assemblies in to Object Browser

#1
I'm using SOSS Object browser(.net 4.0-4.5). My Application is in .net 4.7. When i try to load assemblies. I'm getting "Could not load file or assembly ... or one of it's dependencies. Operation is not supported.(Exception from HRESULT: 0x80131515) "

My DotnetBrowser.exe.config look like this.
Code:
<supportedRuntime version="v4.0"/>
Is there any way I can load .net4.7 assemblies in to this object Browser
 

admin

Administrator
#1
You should not need to modify that supportedRuntime element.

The most common cause of this error is that the assembly you're trying to load was downloaded from the internet and is being blocked by Windows. Check in the assembly's properties to see if it needs to be unblocked. You'll also need to check all the other assemblies that it depends on.
 
Top