Reputation: 17666
When adding reference to the MySQL .NET connector I am seeing two entries listed for MySql.Data
one with a runtime version of 4.0.30319 and another with a runtime version of 2.0.50727
Which should I reference? does it make a difference?
Upvotes: 2
Views: 1685
Reputation: 66459
If your project targets .NET Framework 4.0, then you'll want to reference the 4.0 version. Otherwise, use the 2.0 version (even if your project targets 3.5).
You can check the version your project targets by right-clicking the project in Visual Studio and selecting properties.
Upvotes: 6
Reputation: 2251
If your project is using the .NET Framework 4.0, the 4.0.30319. Otherwise, 2.0.50727
Upvotes: 3