rlemon
rlemon

Reputation: 17666

MySql.Data c# .net library which runtime should I use?

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

Answers (2)

Grant Winney
Grant Winney

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

Tobias Schittkowski
Tobias Schittkowski

Reputation: 2251

If your project is using the .NET Framework 4.0, the 4.0.30319. Otherwise, 2.0.50727

Upvotes: 3

Related Questions