Skip to content

Commit

Permalink
🎇 Style: Enable using System.* first.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dynesshely committed Mar 1, 2024
1 parent 69eaee4 commit 2c2a210
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions TestPlugin.CSharp/Controller.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using KitX.Contract.CSharp;
using System.Text.Json;
using KitX.Contract.CSharp;
using KitX.Shared.CSharp.Plugin;
using KitX.Shared.CSharp.WebCommand;
using KitX.Shared.CSharp.WebCommand.Details;
using System.Text.Json;

namespace TestPlugin.CSharp;

Expand Down
6 changes: 3 additions & 3 deletions TestPlugin.WPF.Core/Controller.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using KitX.Contract.CSharp;
using System;
using System.Windows;
using KitX.Contract.CSharp;
using KitX.Shared.CSharp.WebCommand;
using KitX.Shared.CSharp.WebCommand.Details;
using System;
using System.Windows;

namespace TestPlugin.WPF.Core;

Expand Down
8 changes: 4 additions & 4 deletions TestPlugin.WPF.Core/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using KitX.Contract.CSharp;
using KitX.Shared.CSharp.Plugin;
using KitX.Shared.CSharp.WebCommand;
using System;
using System;
using System.Reflection;
using System.Windows;
using KitX.Contract.CSharp;
using KitX.Shared.CSharp.Plugin;
using KitX.Shared.CSharp.WebCommand;

namespace TestPlugin.WPF.Core;

Expand Down
4 changes: 2 additions & 2 deletions TestPlugin.Winform.Core/Controller.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using KitX.Contract.CSharp;
using System.Text.Json;
using KitX.Contract.CSharp;
using KitX.Shared.CSharp.WebCommand;
using KitX.Shared.CSharp.WebCommand.Details;
using System.Text.Json;

namespace TestPlugin.Winform.Core;

Expand Down

0 comments on commit 2c2a210

Please sign in to comment.