From f2ca3e819759dc14cb3a595e8207487166989774 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 28 Dec 2025 19:21:07 +0000 Subject: [PATCH] fix: Replace SQLite.Core with full SQLite package and fix XML doc warnings - Changed System.Data.SQLite.Core to System.Data.SQLite package to fix missing assembly references - Fixed malformed XML documentation comments in TexturePacker.cs by converting to regular comments - This resolves build errors CS0234 and CS0246, and XML comment warnings CS1570 --- Intersect.Editor/Content/TexturePacker.cs | 10 +++++----- Intersect.Editor/Intersect.Editor.csproj | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Intersect.Editor/Content/TexturePacker.cs b/Intersect.Editor/Content/TexturePacker.cs index df504d7701..27d57a722a 100644 --- a/Intersect.Editor/Content/TexturePacker.cs +++ b/Intersect.Editor/Content/TexturePacker.cs @@ -16,17 +16,17 @@ public enum FreeRectChoiceHeuristic RectBestShortSideFit, - ///< -BSSF: Positions the rectangle against the short side of a free rectangle into which it fits the best. + // -BSSF: Positions the rectangle against the short side of a free rectangle into which it fits the best. RectBestLongSideFit, - ///< -BLSF: Positions the rectangle against the long side of a free rectangle into which it fits the best. + // -BLSF: Positions the rectangle against the long side of a free rectangle into which it fits the best. RectBestAreaFit, - ///< -BAF: Positions the rectangle into the smallest free rect into which it fits. + // -BAF: Positions the rectangle into the smallest free rect into which it fits. RectBottomLeftRule, - ///< -BL: Does the Tetris placement. - RectContactPointRule ///< -CP: Choosest the placement where the rectangle touches other rects as much as possible. + // -BL: Does the Tetris placement. + RectContactPointRule // -CP: Choosest the placement where the rectangle touches other rects as much as possible. }; diff --git a/Intersect.Editor/Intersect.Editor.csproj b/Intersect.Editor/Intersect.Editor.csproj index 09670662ac..b9360740d4 100644 --- a/Intersect.Editor/Intersect.Editor.csproj +++ b/Intersect.Editor/Intersect.Editor.csproj @@ -70,7 +70,7 @@ - +