调试UWP项目时,出现以下错误:
System.IO.FileNotFoundException:'无法加载文件或程序集 'e_sqlite3,文化=中性,PublicKeyToken =空'。系统无法 找到指定的文件。'
此行发生错误:
Xamarin.Forms.Forms.Init(e);
来自以下代码块:
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
rootFrame.NavigationFailed += OnNavigationFailed;
Xamarin.Forms.Forms.Init(e);
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (e.PrelaunchActivated == false)
{
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
rootFrame.Navigate(typeof(MainPage), e.Arguments);
}
// Ensure the current window is active
Window.Current.Activate();
}
}
有一点背景...我从解决方案中的3个项目开始(共享库,WPF和Android)。该应用程序当前正在Android和WPF项目中读写sqlite文件。
我刚刚添加了UWP项目。在添加了对共享库的引用并添加了相关的nuget包之后,在调试UWP项目时遇到了错误。
这是我当前的解决方案: Screenshot of Solution Explorer
我正在使用SQLite-net-pcl nuget版本1.5.231(发布时最新的稳定版本)。 Screenshot of nuget package
我也有SQLiteNetExtensions和SQLiteNetExtensions.Async nuget包。 Screenshot of all sqlite related nuget packages
我的UWP项目有: 目标版本:Windows 10版本1809 最低版本:Windows 10 Fall Creators更新 screenshot of UWP Target settings
我发现了许多有关此问题的帖子,但它们似乎都表明此问题已在SQLite-net-pcl 1.5.166版本中得到解决,并且我使用的是新版本。
另一篇文章提到使用Visual Studio的sqlite扩展程序,但我找不到。该帖子已有几年历史,因此该修复程序可能是无关紧要的,因为它引用的是Visual Studio 2015。
我正在使用Visual Studio Professional 2017 15.9.9版。在具有所有最新更新和Service Pack的Windows 10 Pro工作站上运行。
有人对如何解决此问题有任何建议吗?