Skip to content
This repository was archived by the owner on Nov 29, 2025. It is now read-only.

Commit c9f3e49

Browse files
fix imports
1 parent f86f958 commit c9f3e49

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET
1616
uses: actions/setup-dotnet@v2
1717
with:
18-
dotnet-version: 9.0.x
18+
dotnet-version: 10.0.x
1919

2020
- name: Test
2121
run: dotnet test --test-adapter-path:.

.github/workflows/nuget_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .NET
1515
uses: actions/setup-dotnet@v2
1616
with:
17-
dotnet-version: 9.0.x
17+
dotnet-version: 10.0.x
1818

1919
- name: Restore dependencies
2020
run: dotnet restore

Flamui.Tests/TestUiTreeHost.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using Silk.NET.GLFW;
2-
3-
namespace Flamui.Tests;
1+
namespace Flamui.Tests;
42

53
public sealed class TestUiTreeHost : IUiTreeHost
64
{

Flamui.Tests/TextEditTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using Flamui.Components;
22
using Flamui.Drawing;
33
using Flamui.UiElements;
4-
using Silk.NET.Input;
54

65
namespace Flamui.Tests;
76

Flamui/WindowHost.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
namespace Flamui;
1+
using Silk.NET.GLFW;
2+
using Silk.NET.Windowing;
3+
4+
namespace Flamui;
25

36
public sealed class NativeUiTreeHost : IUiTreeHost
47
{

0 commit comments

Comments
 (0)