I have a third party 32 bit dll that am planning on running on win7 64 bit. I did some research and i found out i should change the platform to x86. I did that it and i still get this error.
"Additional information: Could not load file or assembly 'Sensor.Data, Version=2013.3.4972.15254, Culture=neutral, PublicKeyToken=********' or one of its dependencies. Strong name validation failed. (Exception from HRESULT: 0x8013141A)**
Did you try searching for the error online? Here is the first hit I got for an MSDN blog with a workaround.
You may want to ask the third party to provide a fully signed DLL.
Make sure that the Sensor.Data
assembly is 32-bit.
If you have a 32-bit process, all the loaded DLLs and modules need to be 32-bit as well.
User contributions licensed under CC BY-SA 3.0