From 287dd53fec9c26cdda155763713e3a78dabc867c Mon Sep 17 00:00:00 2001 From: Dynesshely Date: Fri, 1 Mar 2024 08:09:42 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=87=20Style:=20Enable=20`using=20Syste?= =?UTF-8?q?m.*`=20first.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- KitX.Loader.CSharp/PluginManager.cs | 10 +++++----- KitX.Loader.WPF.Core/App.xaml.cs | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/KitX.Loader.CSharp/PluginManager.cs b/KitX.Loader.CSharp/PluginManager.cs index 1f8c739..cac68d4 100644 --- a/KitX.Loader.CSharp/PluginManager.cs +++ b/KitX.Loader.CSharp/PluginManager.cs @@ -1,12 +1,12 @@ -using KitX.Contract.CSharp; +using System.ComponentModel.Composition.Hosting; +using System.Reflection; +using System.Text; +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 KitX.Shared.CSharp.WebCommand.Infos; -using System.ComponentModel.Composition.Hosting; -using System.Reflection; -using System.Text; -using System.Text.Json; namespace KitX.Loader.CSharp; diff --git a/KitX.Loader.WPF.Core/App.xaml.cs b/KitX.Loader.WPF.Core/App.xaml.cs index 1b44189..93fb183 100644 --- a/KitX.Loader.WPF.Core/App.xaml.cs +++ b/KitX.Loader.WPF.Core/App.xaml.cs @@ -1,6 +1,6 @@ -using KitX.Loader.CSharp; -using System; +using System; using System.Windows; +using KitX.Loader.CSharp; namespace KitX.Loader.WPF.Core;