Upgraded to dotnet 10

This commit is contained in:
2025-11-30 17:46:54 +01:00
parent 10913b0a21
commit a14f17e8c3
9 changed files with 72 additions and 47 deletions

View File

@@ -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

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>