From d3384070490728a154ff615bacdb580cf1b9cad2 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Wed, 10 Sep 2025 20:56:05 +1000 Subject: [PATCH] remove unused usings --- src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs | 1 - src/SharpIDE.Application/Features/Debugging/Debugger.cs | 3 +-- .../Features/Debugging/DebuggingService.cs | 1 - src/SharpIDE.Application/Features/Events/GlobalEvents.cs | 1 - .../Features/Run/LaunchSettingsParser.cs | 1 - .../SolutionDiscovery/VsPersistence/VsPersistenceMapper.cs | 1 - src/SharpIDE.Godot/CustomSyntaxHighlighter.cs | 5 +---- src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs | 1 - src/SharpIDE.Godot/Features/Run/RunMenuItem.cs | 1 - src/SharpIDE.Godot/Features/Run/RunPanel.cs | 3 --- src/SharpIDE.Godot/Features/Run/RunPanelTab.cs | 3 --- src/SharpIDE.Godot/IdeRoot.cs | 2 -- src/SharpIDE.Godot/NodeExtensions.cs | 4 +--- 13 files changed, 3 insertions(+), 24 deletions(-) diff --git a/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs b/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs index 7080a03..0070ed0 100644 --- a/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs +++ b/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs @@ -7,7 +7,6 @@ using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.CodeRefactorings; using Microsoft.CodeAnalysis.Completion; -using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.MSBuild; using Microsoft.CodeAnalysis.Text; diff --git a/src/SharpIDE.Application/Features/Debugging/Debugger.cs b/src/SharpIDE.Application/Features/Debugging/Debugger.cs index aa0350a..66cc0bd 100644 --- a/src/SharpIDE.Application/Features/Debugging/Debugger.cs +++ b/src/SharpIDE.Application/Features/Debugging/Debugger.cs @@ -1,5 +1,4 @@ -using SharpIDE.Application.Features.Debugging.Experimental; -using SharpIDE.Application.Features.SolutionDiscovery; +using SharpIDE.Application.Features.SolutionDiscovery; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; namespace SharpIDE.Application.Features.Debugging; diff --git a/src/SharpIDE.Application/Features/Debugging/DebuggingService.cs b/src/SharpIDE.Application/Features/Debugging/DebuggingService.cs index 66699d1..3305459 100644 --- a/src/SharpIDE.Application/Features/Debugging/DebuggingService.cs +++ b/src/SharpIDE.Application/Features/Debugging/DebuggingService.cs @@ -5,7 +5,6 @@ using Microsoft.Diagnostics.NETCore.Client; using Microsoft.VisualStudio.Shared.VSCodeDebugProtocol; using Microsoft.VisualStudio.Shared.VSCodeDebugProtocol.Messages; using Newtonsoft.Json.Linq; -using SharpIDE.Application.Features.Debugging.Experimental; using SharpIDE.Application.Features.Debugging.Experimental.VsDbg; using SharpIDE.Application.Features.Events; using SharpIDE.Application.Features.SolutionDiscovery; diff --git a/src/SharpIDE.Application/Features/Events/GlobalEvents.cs b/src/SharpIDE.Application/Features/Events/GlobalEvents.cs index ccc7251..fd8f86e 100644 --- a/src/SharpIDE.Application/Features/Events/GlobalEvents.cs +++ b/src/SharpIDE.Application/Features/Events/GlobalEvents.cs @@ -1,5 +1,4 @@ using SharpIDE.Application.Features.Debugging; -using SharpIDE.Application.Features.SolutionDiscovery; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; namespace SharpIDE.Application.Features.Events; diff --git a/src/SharpIDE.Application/Features/Run/LaunchSettingsParser.cs b/src/SharpIDE.Application/Features/Run/LaunchSettingsParser.cs index 4d7d547..3fa25d3 100644 --- a/src/SharpIDE.Application/Features/Run/LaunchSettingsParser.cs +++ b/src/SharpIDE.Application/Features/Run/LaunchSettingsParser.cs @@ -1,5 +1,4 @@ using System.Text.Json; -using System.Text.Json.Serialization; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; namespace SharpIDE.Application.Features.Run; diff --git a/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/VsPersistenceMapper.cs b/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/VsPersistenceMapper.cs index 705e7ec..b03e56a 100644 --- a/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/VsPersistenceMapper.cs +++ b/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/VsPersistenceMapper.cs @@ -1,5 +1,4 @@ using System.Diagnostics; -using SharpIDE.Application.Features.Evaluation; namespace SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; diff --git a/src/SharpIDE.Godot/CustomSyntaxHighlighter.cs b/src/SharpIDE.Godot/CustomSyntaxHighlighter.cs index fd566e2..6a203f7 100644 --- a/src/SharpIDE.Godot/CustomSyntaxHighlighter.cs +++ b/src/SharpIDE.Godot/CustomSyntaxHighlighter.cs @@ -1,7 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using Godot; +using Godot; using Godot.Collections; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Classification; diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs b/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs index 4e19a25..781aaf3 100644 --- a/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs +++ b/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs @@ -1,4 +1,3 @@ -using Ardalis.GuardClauses; using Godot; namespace SharpIDE.Godot.Features.LeftSideBar; diff --git a/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs b/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs index bb7bf7c..552d6a7 100644 --- a/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs +++ b/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs @@ -1,4 +1,3 @@ -using System.Threading.Tasks; using Godot; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; diff --git a/src/SharpIDE.Godot/Features/Run/RunPanel.cs b/src/SharpIDE.Godot/Features/Run/RunPanel.cs index a211b2b..c572c12 100644 --- a/src/SharpIDE.Godot/Features/Run/RunPanel.cs +++ b/src/SharpIDE.Godot/Features/Run/RunPanel.cs @@ -1,6 +1,3 @@ -using System.Collections.Generic; -using System.Linq; -using GDExtensionBindgen; using Godot; using SharpIDE.Application.Features.Events; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; diff --git a/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs b/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs index 96a0c09..d2faa61 100644 --- a/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs +++ b/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs @@ -1,6 +1,3 @@ -using System.Collections.Frozen; -using System.Collections.Generic; -using System.Threading.Tasks; using GDExtensionBindgen; using Godot; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; diff --git a/src/SharpIDE.Godot/IdeRoot.cs b/src/SharpIDE.Godot/IdeRoot.cs index f39a8ad..8dca4d9 100644 --- a/src/SharpIDE.Godot/IdeRoot.cs +++ b/src/SharpIDE.Godot/IdeRoot.cs @@ -1,5 +1,3 @@ -using System.Linq; -using System.Threading.Tasks; using Godot; using Microsoft.Build.Locator; using SharpIDE.Application.Features.Analysis; diff --git a/src/SharpIDE.Godot/NodeExtensions.cs b/src/SharpIDE.Godot/NodeExtensions.cs index 05bb877..29cc846 100644 --- a/src/SharpIDE.Godot/NodeExtensions.cs +++ b/src/SharpIDE.Godot/NodeExtensions.cs @@ -1,6 +1,4 @@ -using System; -using System.Threading.Tasks; -using Godot; +using Godot; namespace SharpIDE.Godot;