I am deploying a legacy C# mobile application onto a Windows CE 6 device.
The application compiles within Visual Studio 2008 and deploys onto the device, but an error appears when running my application on the device:
File or assembly name 'System.Data.SqlServerCe, version = 3.0.3600.0, culture=neutral, PublicKeyToken=3B3235DF1C802AD3' or one of it's dependencies, was not found'.
This application (as you've probably guessed) uses SQL Server Compact, I've tried various methods to get the application to run (reinstalled SQL Server compact on the device etc) but no joy.
I've also tried altering the app.config file to map remap this missing dependency:
<dependentassembly>
<assemblyidentity name="System.Data.SqlServerCe" culture="neutral" publickeytoken="3be235df1c8d2ad3" />
<bindingredirect newVersion="3.5.0.0" oldVersion="3.0.3600.0" />
</dependentassembly>
But I am getting still the same issue.