我正在使用 WPF。SQLiteConnection
在代码中,问题出现了——
The invocation of the constructor on type 'TestWPF.MainWindow' that matches the specified binding constraints threw an exception.
InnerException: Make sure that the file is a valid .NET Framework assembly.
谁能告诉我,如何解决它?
答案
我通过添加以下内容解决了该问题app.config
,
<configuration> <startup useLegacyV2RuntimeActivationPolicy="true" /> </configuration>
我通过用户添加的社区发现了这个FCAA文章下方" Troubleshooting Exceptions: System.IO.FileLoadException"在 MSDN 上。