5

我想在我的 windows phone 8 应用程序中使用 sqlite db。

我遇到了一个博客,我正在关注它在我的应用程序中使用 sqlite。

我为 Windows Phone 下载的 SQLite 版本是 3.8.0。我还从GITHUB下载了 sqlite-net-wp8 项目。

我面临的问题是,虽然在我的 WP8 应用程序解决方案中包含这个 sqlite-net-wp8 项目,但它给出了一个错误

Unable to read the project file Sqlite.vcxproj

它还说,

the imported project C:\Program Files\Microsoft SDKs\Windows Phone\v8.0\ExtensionSDKs\SQLite.WP80\3.8.0.2\DesignTime\Common Configuration\Neutral\SQLite.QP80.props not found

我究竟做错了什么 ??

4

3 回答 3

3

我希望这个链接有帮助,因为它来自 MsDn

Windows Phone 8 的 Sqlite

于 2013-09-09T07:19:41.270 回答
1

在 Visual Studio 中打开您的解决方案。单击工具->扩展和更新它将打开扩展和更新浏览器窗口,而不是在线搜索 Sqlite 的窗口并从搜索结果中安装 Sqlite。比它会重新启动你的 SDK

于 2014-01-15T13:09:07.917 回答
0

根据我的理解,即使你从 VS2012 创建每个简单的 Visual C++ windows phone 项目,你也会得到同样的错误。在这种情况下,我怀疑该问题与您的 VS 有关。

根据康拉德在此线程中的回复,类似问题:http ://social.msdn.microsoft.com/Forums/en-US/cba01040-067e-4ac3-ba4c-a8a14ba3c45d/unable-to-read-the-project- file,我觉得你可以检查这个文件:C:\Program Files(x86)\MSBuild\Microsoft\WindowsPhone\v7.0\Microsoft.Cpp.Windows Phone.7.0.targets 在你的系统上。如果它不存在,我怀疑你的 VS 安装是错误的。

如果你没有使用 VS Express,你可以找到 IDE 文件夹然后运行这些命令来检查它是否有帮助:

Please open Windows Explorer, and navigate to  <Visual Studio Installation Path>\Common7\IDE
Devenv.exe /SafeMode: Launches the IDE in safe mode loading minimal windows.
Devenv.exe /ResetSettings: Restores the IDE's default settings, optionally resets to the specified VSSettings file.
Devenv.exe /ResetAddin: Removes commands and command UI associated with the specified Add-in.
Devenv.exe /ResetSkipPkgs: Clears all SkipLoading tags added to VSPackages.

如果没有帮助,我建议您尝试修复您的 VS 或将其卸载然后重新安装。

最好的祝福,

于 2014-05-09T10:13:11.593 回答