C# SQLiteDatabaseScope引用错误

C# SQLiteDatabaseScope引用错误,c#,sqlite,C#,Sqlite,在一个解决方案中,我正确引用了SQLiteDatabaseScope,没有错误。在另一个解决方案中,我感到沮丧,因为我无法使用nuget或显式引用解决方案一hdd位置上的dll引用此dll using System.Data.SQLite; SQLiteDatabaseScope DbScope; // the type or namespace could not be found 有什么想法吗?SQLiteDatabaseScope不是的一部分,而是另一个来源 确保引用了正确的程序集(来自

在一个解决方案中,我正确引用了
SQLiteDatabaseScope
,没有错误。在另一个解决方案中,我感到沮丧,因为我无法使用nuget或显式引用解决方案一hdd位置上的dll引用此dll

using System.Data.SQLite;
SQLiteDatabaseScope DbScope; // the type or namespace could not be found

有什么想法吗?

SQLiteDatabaseScope
不是的一部分,而是另一个来源

确保引用了正确的程序集(来自“basicallyeverything”),或者项目中包含了适当的类源文件


请记住,程序集名称和名称空间不需要在.NET中对齐-它们对齐时非常精确。

SQLiteDatabaseScope
不是的一部分,而是另一个源

确保引用了正确的程序集(来自“basicallyeverything”),或者项目中包含了适当的类源文件

请记住,在.NET中,程序集名称和名称空间不需要对齐-这样做只是一个细节