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;