How do I load a .NET 4.0 assembly into the Object Browser?

#1
When I attempt to load my assembly into the Object Browser, I receive a "not a valid .NET assembly error". I know my assembly is valid, and my application works without error. Do I need to add something to my assembly to support the Object Browser?
 
#1
The ScaleOut StateServer Object Browser application runs under the .NET 2.0 runtime by default. To correct the problem where the Object Browser reports that a .NET 4.0 DLL is "not a valid .NET assembly," edit the Object Browser’s config file to make it run under the .NET 4.0 runtime instead. In the product's installation directory, edit the DotNetBrowser.exe.config file so that its contents look like this:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0.30319"/>
  </startup>

  <runtime>
    <NetFx40_LegacySecurityPolicy enabled="true"/>
  </runtime>
</configuration>
 
Top