nuget包mysql.data与uwp 10.0.10586不兼容

s5a0g9ez  于 2021-06-24  发布在  Mysql
关注(0)|答案(1)|浏览(454)

似乎mysql.data包与windows 10 novermber update(10.0;建造10586)。
为了在模拟器上运行我的应用程序,我需要将最小目标设置为Windows10Novermber更新。但我也需要mysql连接。我能做什么?

Package MySql.Data 8.0.11 is not compatible with uap10.0.10586 (UAP,Version=v10.0.10586)

编辑:所以我尝试安装mysql.data的旧版本(6.10.6)。它成功安装了,但现在,当我尝试连接到mysql数据库时,出现以下错误:

FileNotFoundException: Could not load file or assembly 
'System.Diagnostics.Process, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.
connString = "*********";

mcon = new MySqlConnection(connString);

cmd = mcon.CreateCommand();

mcon.Open();//error happens at this line
ygya80vv

ygya80vv1#

作为nuget mysql.data 6.10.6依赖项,它要求.netstandard 2.0 witch现在仅在uwp应用程序版本16299中受支持(请参见.net标准),因此如果您想在uwp应用程序中使用此nuget,您应该在秋季创建者更新build 16299时设置应用程序目标版本和最小版本。
因此,与mysql.data 8.0.11一样,您还需要在秋季creators update build 16299上设置应用程序目标版本和最小版本。

相关问题