Skip to content

Commit 2a8bf62

Browse files
committed
Format and sort using
1 parent 8ea1f94 commit 2a8bf62

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

WorkspaceLauncherForVSCode/Classes/CountTracker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ public void Reset()
9090
}
9191
}
9292
}
93-
93+

WorkspaceLauncherForVSCode/Classes/SettingsManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class SettingsManager : JsonSettingsManager
8383
"Enable Logging",
8484
"Enables diagnostic logging for troubleshooting.",
8585
false);
86-
86+
8787
private readonly ToggleSetting _useHelperLauncher = new(
8888
Namespaced(nameof(UseHelperLauncher)),
8989
"Use Helper Launcher",

WorkspaceLauncherForVSCode/Classes/VisualStudioCodeInstance.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
using System;
44
using System.Text.Json.Serialization;
55
using Microsoft.CommandPalette.Extensions.Toolkit;
6-
using WorkspaceLauncherForVSCode.Enums;
76
using WorkspaceLauncherForVSCode.Classes;
7+
using WorkspaceLauncherForVSCode.Enums;
88

99
namespace WorkspaceLauncherForVSCode;
1010

WorkspaceLauncherForVSCode/Classes/WorkspaceStorage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private void InitializeDatabase()
8585
try
8686
{
8787
using var transaction = _connection.BeginTransaction();
88-
88+
8989
// 1. Initialize V2 Table and PinnedWorkspaces
9090
var initCmd = _connection.CreateCommand();
9191
initCmd.Transaction = transaction;

WorkspaceLauncherForVSCode/Listeners/SettingsListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private void OnSettingsChanged(object? sender, Settings e)
9494
InstanceSettingsChanged?.Invoke(this, EventArgs.Empty);
9595
_previousEnableVisualStudio = currentEnableVisualStudio;
9696
}
97-
97+
9898
if (currentUseHelperLauncher != _previousUseHelperLauncher)
9999
{
100100
_previousUseHelperLauncher = currentUseHelperLauncher;

WorkspaceLauncherForVSCode/Properties/Resource.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WorkspaceLauncherForVSCode/Workspaces/WorkspaceFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,4 @@ public static List<VisualStudioCodeWorkspace> Filter(
138138
}
139139
}
140140
}
141-
141+

WorkspaceLauncherForVSCode/Workspaces/WorkspaceItemFactory.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static ListItem Create(
8787
// Add alternative version opening options based on installed instances
8888
foreach (var instance in visualStudioInstanceList)
8989
{
90-
if (workspace.VSInstance != null &&
90+
if (workspace.VSInstance != null &&
9191
string.Equals(workspace.VSInstance.InstancePath, instance.InstancePath, StringComparison.OrdinalIgnoreCase))
9292
{
9393
continue;
@@ -114,10 +114,10 @@ public static ListItem Create(
114114
VisualStudioCodeRemoteUri = workspace.VisualStudioCodeRemoteUri
115115
};
116116

117-
var altCommand = new OpenSolutionCommand(tempWorkspace, page, elevated: false)
118-
{
119-
Name = $"Open in Visual Studio {versionLabel}",
120-
Icon = altIcon
117+
var altCommand = new OpenSolutionCommand(tempWorkspace, page, elevated: false)
118+
{
119+
Name = $"Open in Visual Studio {versionLabel}",
120+
Icon = altIcon
121121
};
122122
moreCommands.Add(new CommandContextItem(altCommand));
123123
}

0 commit comments

Comments
 (0)