c# – 在使用SQLite构建UWP应用程序时调用警告

当使用SQLite添加构建UWP应用程序时,我收到了大约40个警告,如下所示(只是方法名称更改)(为了更好的可读性添加了一些新行).配置设置为release.我没有在调试模式下收到任何这些消息.

C:\Program Files (x86)\MSBuild\Microsoft\.NetNative\ARM\ilc\IlcInternals.targets(936,5): 
    warning : ILTransform_0000:       
    MCG : warning MCG0006: 
        Unresolved P/Invoke method 'Open!sqlite3' in assembly 
        'SQLite.Net.Platform.WinRT, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null' 
        because it is not available in UWP applications. Please either use an another API , 
        or use [DllImport(ExactSpelling=true) to indicate that you understand the 
        implications of using non-UWP application APIs. 

根据许多教程,我在项目中有以下参考.

> SQLite for Windows Universal Platform,通过s000ite-uwp-3120200.vsix文件从sqlite.org安装
>适用于通用Windows平台应用程序的Visual C 2015 Runtime(尝试使用和不使用此扩展程序,因为某些教程在是否需要添加时有所不同)
>通过NuGet安装SQLite.Net-PCL(v3.1.1)

目标和最小版本是10586.由于它是在发布模式下构建的,因此启用了本机工具链的使用.

有谁知道这个警告信息意味着什么以及如何解决它?

最佳答案 在处理UWP unittest时我遇到了类似的问题 – 仅在发布模式下调试模式没有问题.

我通过将UseDotNetNativeToolchain更改为false来解决它.

查看.vcxproj文件

< UseDotNetNativeToolchain&GT假LT; / UseDotNetNativeToolchain>

点赞