From b5cf5ddc91664f723a899f7969210722cef10973 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Wed, 27 Aug 2025 18:21:27 +1000 Subject: [PATCH] fix namespace --- .../Features/SolutionExplorer/SolutionExplorerPanel.cs | 2 +- src/SharpIDE.Godot/IdeRoot.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs index e5a596e..5261aa1 100644 --- a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs +++ b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs @@ -2,7 +2,7 @@ using Godot; using SharpIDE.Application.Features.SolutionDiscovery; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; -namespace SharpIDE.Godot; +namespace SharpIDE.Godot.Features.SolutionExplorer; public partial class SolutionExplorerPanel : Panel { diff --git a/src/SharpIDE.Godot/IdeRoot.cs b/src/SharpIDE.Godot/IdeRoot.cs index cd73c2d..85806e2 100644 --- a/src/SharpIDE.Godot/IdeRoot.cs +++ b/src/SharpIDE.Godot/IdeRoot.cs @@ -1,4 +1,3 @@ -using System; using System.Linq; using System.Threading.Tasks; using Godot; @@ -6,6 +5,7 @@ using Microsoft.Build.Locator; using SharpIDE.Application.Features.Analysis; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; using SharpIDE.Godot.Features.Run; +using SharpIDE.Godot.Features.SolutionExplorer; namespace SharpIDE.Godot;