diff --git a/Intersect.Editor/Core/Database.cs b/Intersect.Editor/Core/Database.cs index 40e4e53185..e1b02fa281 100644 --- a/Intersect.Editor/Core/Database.cs +++ b/Intersect.Editor/Core/Database.cs @@ -1,6 +1,6 @@ using Intersect.Configuration; using Intersect.Editor.Configuration; -using System.Data.SQLite; +using Mono.Data.Sqlite; namespace Intersect.Editor.Core; @@ -64,7 +64,7 @@ public static void InitMapCache() Directory.CreateDirectory("resources"); } - // Note: System.Data.SQLite handles thread safety internally, no need to set serialized mode + // Note: Mono.Data.Sqlite handles thread safety internally, no need to set serialized mode if (!File.Exists(DB_FILENAME)) { CreateDatabase(); diff --git a/Intersect.Editor/Intersect.Editor.csproj b/Intersect.Editor/Intersect.Editor.csproj index b9360740d4..03197b3fd1 100644 --- a/Intersect.Editor/Intersect.Editor.csproj +++ b/Intersect.Editor/Intersect.Editor.csproj @@ -70,7 +70,7 @@ - +