ThinkGeo.com    |     Documentation    |     Premium Support

FdoExtension

Hello


I am trying to use FdoExtension.dll in my demo application. I do all the steps defined in fdo quick start guide and i am able to load a dted (.dt1) file.


GdalRasterLayer myLayer = new GdalRasterLayer(pathToFile); // no problem


myLayer.Open() fire an exception saying "mixed mode assambly is built against version v2.0.50727 of the runtime and can not be loaded in the 4.0 runtime without additional configuration information:null"


source of the exception is MapSuiteFdoExtension.GeoFdoRasterSource.Open


i could not understand where the problem is, please help.


 


 


 



 Hi onur,


Please try adding the following in the app.config:


 



<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
  </startup>


 


 


Thanks,


Johnny