I had developed an UCMA 4.0 application on both VS 2013 and VS 2010. When run project, I got this error:
Could not load file or assembly 'SIPEPS, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
I used .NET
4 and had set target build platform to x64
. Checked by dependwalker_x64 and no file is missing.
I also used the App.config file from Sample but not work so I had changed the App.config file as follow:
<runtime>
<assemblyBinding>
<dependentAssembly>
<assemblyIdentity name="SIPEPS" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="5.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
How should I do for this problem? Thanks so much for any help!