这是我的问题:
我的应用程序使用System.Data.sqlite.DLL.我引用它并在我的电脑中正常运行,但是无法在另一台计算机上运行.这是错误信息:
System.IO.FileLoadException: Could not load file or assembly
‘System.Data.sqlite,Version=1.0.88.0,Culture=neutral,
PublicKeyToken=db937bc2d44ff139’ or one of its dependencies.
The application has Failed to start because its side-by-side
configuration is incorrect. Please see the application event
log or use the command-line sxstrace.exe tool for more detail.
(Exception from HRESULT: 0x800736B1) File name: ‘System.Data.sqlite,
Version=1.0.88.0,PublicKeyToken=db937bc2d44ff139’
—> System.Runtime.InteropServices.COMException (0x800736B1):
The application has Failed to start because its side-by-side
configuration is incorrect. Please see the application event log or
use the command-line sxstrace.exe tool for more detail.
(Exception from HRESULT: 0x800736B1)
at SimPB.config.PrepareDatabase()
at SimPB.config.InitializeProgram()
at SimPB.Program.Main()
我的电脑正在运行Windows 7 32位,Visual Studio 2010.
另一台计算机也运行Windows 7 32位,没有安装Visual Studio.
我试过了
尝试1:确保使用版本x86构建应用程序,并使用目标框架构建应用程序:.NET Framework 2.0.完成.
尝试2:确保应用程序使用System.Data.sqlite(x86 .Net Framework 2.0(sqlite-netFx20-binary-Win32-2005-1.0.88.0))的正确构建引用.完成
尝试3:在App.config尝试这些代码:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v2.0.50727"/> </startup> </configuration>
和这个
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v2.0.50727"/> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> </startup> <runtime> <NetFx40_LegacySecurityPolicy enabled="true"/> </runtime> </configuration>
和这个
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v2.0.50727"/> </startup> </configuration>
完成.
尝试5:尝试在另一台计算机上安装Visual C Runtime(我安装Visual Microsoft Visual C Runtime 2010可再发行组件包(x86),也尝试了2005年的verse.).完成.
尝试6:尝试重新安装.NET Framework 2.0 SP2.接收错误:
You must use “Turn Windows Features On or Off” in the Control Panel to
install or configure Microsoft .NET Framework 2.0 SP2.
更新:(阅读答案和意见后)
尝试7:确保System.Data.sqlite.DLL位于输出bin文件夹.完成
尝试8:双重确认另一台计算机正在运行32位Windows 7.完成
尝试9:更改.csproj文件中的HintPath声明:
改变这个:
<Reference Include="System.Data.sqlite,PublicKeyToken=db937bc2d44ff139,processorArchitecture=x86"> <HintPath>E:\Developer Soft\sqlite\sqlite-netFx20-binary-bundle-Win32-2005-1.0.88.0\System.Data.sqlite.dll</HintPath> </Reference>
为此:
<Reference Include="System.Data.sqlite,processorArchitecture=x86"> <HintPath>..\System.Data.sqlite.dll</HintPath> </Reference>
完成尝试9.
经过上述尝试,结果仍然是一样的.应用程序可以从我的计算机正常运行,并且无法在另一台计算机上运行.
这是一个开源的免费软件,简单的电话簿.我已经提交并将最新的源代码上传到其源控制服务器:http://simpb.codeplex.com/SourceControl/list/changesets(更改集号:fd847ac6c406)
解决方法
短篇故事:
使用旧版本的System.Data.sqlite.新版本怀疑有bug(我可能是错的).
很长的故事:
我开始回想起我以前的旧版本的程序是否能够在其他计算机上执行,这个新版本不能.我做了哪些明显的变化?
是的,我已经更改了System.Data.sqlite的版本.
该程序使用的旧版本的System.Data.sqlite是V1.0.66.我使用的新版本是最新版本:V1.0.88,于2013年8月8日发布.(是的,从今天起约4天前).阅读更多:http://system.data.sqlite.org/index.html/timeline
然后我决定放弃新版本(V1.0.88),并使用旧版本(V1.0.66),一切恢复正常.程序再次可以在另一台计算机上执行.
我试图看看V1.0.88的源代码,但是我找不到导致问题的代码行.我可以发现的最好的是在System.Data.sqlite.Interop的项目.当我在Visual Studio 2010中加载解决方案时,System.Data.sqlite.Interop被预置为构建.NET Framework 4.0.我不知道如何改变它.之后,我重新加载Visual Studio 2008中的解决方案,这是System.Data.sqlite.Interop的常见属性,显示它将为.NET Framework 2.0(这是我正在寻找的)构建,但是我无法构建解决方案.发生一些构建错误.我没有花时间来调试它.
我需要开发.NET Framework 2.0的程序,因为还有使用Windows XP的用户.