MySql.Data c# .net 库我应该使用哪个运行时?
添加对 MySQL .NET 连接器 的引用时,我看到 列出了两个条目MySql.Data
一个运行时版本为 4.0.30319,另一个运行时版本为 2.0.50727
我应该引用哪一个?这有什么区别吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的项目面向 .NET Framework 4.0,那么您将需要引用 4.0 版本。否则,请使用 2.0 版本(即使您的项目目标是 3.5)。
您可以通过在 Visual Studio 中右键单击项目并选择“属性”来检查项目的目标版本。
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.
如果您的项目使用 .NET Framework 4.0,则 4.0.30319。
否则,2.0.50727
If your project is using the .NET Framework 4.0, the 4.0.30319.
Otherwise, 2.0.50727