Skip to content

Commit

Permalink
📦 Struct: Adjust name space.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dynesshely committed Feb 28, 2024
1 parent 58dc805 commit 69eaee4
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 14 deletions.
6 changes: 3 additions & 3 deletions TestPlugin.CSharp/Controller.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using KitX.Contract.CSharp;
using KitX.Shared.Plugin;
using KitX.Shared.WebCommand;
using KitX.Shared.WebCommand.Details;
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
2 changes: 1 addition & 1 deletion TestPlugin.CSharp/IdentityInterface.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using KitX.Contract.CSharp;
using KitX.Shared.Plugin;
using KitX.Shared.CSharp.Plugin;

namespace TestPlugin.CSharp;

Expand Down
1 change: 0 additions & 1 deletion TestPlugin.CSharp/TestPlugin.CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

<ItemGroup>
<ProjectReference Include="..\..\..\KitX Standard\KitX Contracts\KitX.Contract.CSharp\KitX.Contract.CSharp.csproj" />
<ProjectReference Include="..\..\..\KitX Standard\KitX.Shared\KitX.Shared.csproj" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions TestPlugin.WPF.Core/Controller.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using KitX.Contract.CSharp;
using KitX.Shared.WebCommand;
using KitX.Shared.WebCommand.Details;
using KitX.Shared.CSharp.WebCommand;
using KitX.Shared.CSharp.WebCommand.Details;
using System;
using System.Windows;

Expand Down
4 changes: 2 additions & 2 deletions TestPlugin.WPF.Core/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using KitX.Contract.CSharp;
using KitX.Shared.Plugin;
using KitX.Shared.WebCommand;
using KitX.Shared.CSharp.Plugin;
using KitX.Shared.CSharp.WebCommand;
using System;
using System.Reflection;
using System.Windows;
Expand Down
1 change: 0 additions & 1 deletion TestPlugin.WPF.Core/TestPlugin.WPF.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

<ItemGroup>
<ProjectReference Include="..\..\..\KitX Standard\KitX Contracts\KitX.Contract.CSharp\KitX.Contract.CSharp.csproj" />
<ProjectReference Include="..\..\..\KitX Standard\KitX.Shared\KitX.Shared.csproj" />
</ItemGroup>

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

namespace TestPlugin.Winform.Core;
Expand Down
2 changes: 1 addition & 1 deletion TestPlugin.Winform.Core/IdentityInterface.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using KitX.Contract.CSharp;
using KitX.Shared.Plugin;
using KitX.Shared.CSharp.Plugin;

namespace TestPlugin.Winform.Core;

Expand Down
1 change: 0 additions & 1 deletion TestPlugin.Winform.Core/TestPlugin.Winform.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

<ItemGroup>
<ProjectReference Include="..\..\..\KitX Standard\KitX Contracts\KitX.Contract.CSharp\KitX.Contract.CSharp.csproj" />
<ProjectReference Include="..\..\..\KitX Standard\KitX.Shared\KitX.Shared.csproj" />
</ItemGroup>

</Project>

0 comments on commit 69eaee4

Please sign in to comment.