Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Intersect.Editor/Core/Database.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Intersect.Configuration;
using Intersect.Editor.Configuration;
using System.Data.SQLite;
using Mono.Data.Sqlite;

namespace Intersect.Editor.Core;

Expand Down Expand Up @@ -41,7 +41,7 @@

public static int GridLightColor = System.Drawing.Color.White.ToArgb();

private static SQLiteConnection sDbConnection;

Check failure on line 44 in Intersect.Editor/Core/Database.cs

View workflow job for this annotation

GitHub Actions / build

The type or namespace name 'SQLiteConnection' could not be found (are you missing a using directive or an assembly reference?)

//Options File
public static void LoadOptions()
Expand All @@ -64,7 +64,7 @@
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();
Expand Down
2 changes: 1 addition & 1 deletion Intersect.Editor/Intersect.Editor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Data.SQLite" Version="1.0.119" />
<PackageReference Include="Mono.Data.Sqlite.Portable" Version="1.0.3.5" />
<PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.1.303" />
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
Expand Down
Loading