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;