diff --git a/.idea/.idea.HopFrame/.idea/workspace.xml b/.idea/.idea.HopFrame/.idea/workspace.xml
index 85f3cbc..c30807b 100644
--- a/.idea/.idea.HopFrame/.idea/workspace.xml
+++ b/.idea/.idea.HopFrame/.idea/workspace.xml
@@ -11,7 +11,16 @@
-
+
+
+
+
+
+
+
+
+
+
@@ -48,7 +57,7 @@
{
"selectedUrlAndAccountId": {
"first": "https://git.leon-hoppe.de/leon.hoppe/hopframe.git",
- "second": "2d65fdcb-5f13-45ad-a7ba-91dd4a88d6e4"
+ "second": "f58c9371-9f54-454e-a0db-5b4bc1187bad"
}
}
@@ -117,55 +126,59 @@
- {
+ "keyToString": {
+ ".NET Launch Settings Profile.HopFrame.Testing.Api: https.executor": "Run",
+ ".NET Launch Settings Profile.HopFrame.Testing.executor": "Run",
+ ".NET Launch Settings Profile.HopFrame.Testing: https.executor": "Run",
+ ".NET Project.HopFrame.Testing.executor": "Run",
+ "72b118b0-a6fc-4561-acdf-74f0b454dbb8.executor": "Debug",
+ "RunOnceActivity.ShowReadmeOnStart": "true",
+ "RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
+ "RunOnceActivity.git.unshallow": "true",
+ "RunOnceActivity.typescript.service.memoryLimit.init": "true",
+ "b5f11219-dfc4-47a1-b02c-90ab603034fb.executor": "Debug",
+ "dcdf1689-dc07-47e4-8824-2e60a4fbf301.executor": "Debug",
+ "git-widget-placeholder": "dev",
+ "list.type.of.created.stylesheet": "CSS",
+ "node.js.detected.package.eslint": "true",
+ "node.js.detected.package.tslint": "true",
+ "node.js.selected.package.eslint": "(autodetect)",
+ "node.js.selected.package.tslint": "(autodetect)",
+ "nodejs_package_manager_path": "npm",
+ "settings.editor.selected.configurable": "preferences.pluginManager",
+ "vue.rearranger.settings.migration": "true"
}
-}]]>
+}
-
+
+
-
+
-
+
+
@@ -174,13 +187,14 @@
-
+
+
@@ -189,13 +203,14 @@
-
+
+
@@ -267,6 +282,7 @@
+
@@ -688,6 +704,17 @@
+
+
+
diff --git a/src/HopFrame.Core/HopFrame.Core.csproj b/src/HopFrame.Core/HopFrame.Core.csproj
index 4bf6fe5..b79fb98 100644
--- a/src/HopFrame.Core/HopFrame.Core.csproj
+++ b/src/HopFrame.Core/HopFrame.Core.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
@@ -19,7 +19,7 @@
-
+
diff --git a/src/HopFrame.Core/Services/Implementations/ContextExplorer.cs b/src/HopFrame.Core/Services/Implementations/ContextExplorer.cs
index b839bf3..c25516f 100644
--- a/src/HopFrame.Core/Services/Implementations/ContextExplorer.cs
+++ b/src/HopFrame.Core/Services/Implementations/ContextExplorer.cs
@@ -1,5 +1,4 @@
-using System.Text.Json;
-using HopFrame.Core.Config;
+using HopFrame.Core.Config;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
diff --git a/src/HopFrame.Web/HopFrame.Web.csproj b/src/HopFrame.Web/HopFrame.Web.csproj
index f1cfc3b..81478e7 100644
--- a/src/HopFrame.Web/HopFrame.Web.csproj
+++ b/src/HopFrame.Web/HopFrame.Web.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
@@ -27,9 +27,8 @@
-
-
-
+
+
diff --git a/testing/HopFrame.Testing.Api/HopFrame.Testing.Api.csproj b/testing/HopFrame.Testing.Api/HopFrame.Testing.Api.csproj
index 58bb4c4..8bb2f7f 100644
--- a/testing/HopFrame.Testing.Api/HopFrame.Testing.Api.csproj
+++ b/testing/HopFrame.Testing.Api/HopFrame.Testing.Api.csproj
@@ -1,14 +1,14 @@
- net9.0
+ net10.0
enable
enable
-
-
+
+
diff --git a/testing/HopFrame.Testing/HopFrame.Testing.csproj b/testing/HopFrame.Testing/HopFrame.Testing.csproj
index 200d962..423538c 100644
--- a/testing/HopFrame.Testing/HopFrame.Testing.csproj
+++ b/testing/HopFrame.Testing/HopFrame.Testing.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
@@ -9,9 +9,9 @@
-
-
-
+
+
+
diff --git a/tests/HopFrame.Tests.Core/HopFrame.Tests.Core.csproj b/tests/HopFrame.Tests.Core/HopFrame.Tests.Core.csproj
index 023d3aa..11aab11 100644
--- a/tests/HopFrame.Tests.Core/HopFrame.Tests.Core.csproj
+++ b/tests/HopFrame.Tests.Core/HopFrame.Tests.Core.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
false
@@ -9,7 +9,7 @@
-
+
diff --git a/tests/HopFrame.Tests.Web/Components/Dialogs/HopFrameEditorTests.cs b/tests/HopFrame.Tests.Web/Components/Dialogs/HopFrameEditorTests.cs
index 7904528..34e8c64 100644
--- a/tests/HopFrame.Tests.Web/Components/Dialogs/HopFrameEditorTests.cs
+++ b/tests/HopFrame.Tests.Web/Components/Dialogs/HopFrameEditorTests.cs
@@ -47,7 +47,7 @@ public class HopFrameEditorTests : TestContext {
var dialogData = new EditorDialogData(tableConfig, new MyTable());
var dialog = new FluentDialog() {
- Instance = new DialogInstance(typeof(HopFrameEditor), new DialogParameters(), dialogData)
+ Instance = new DialogInstance(typeof(HopFrameEditor), new DialogParameters(), dialogData, null)
};
// Act
diff --git a/tests/HopFrame.Tests.Web/HopFrame.Tests.Web.csproj b/tests/HopFrame.Tests.Web/HopFrame.Tests.Web.csproj
index 896d38b..e998596 100644
--- a/tests/HopFrame.Tests.Web/HopFrame.Tests.Web.csproj
+++ b/tests/HopFrame.Tests.Web/HopFrame.Tests.Web.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
false