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 28f000f commit a08a0e7
Show file tree
Hide file tree
Showing 50 changed files with 39 additions and 36 deletions.
4 changes: 2 additions & 2 deletions KitX Contracts/KitX.Contract.CSharp/IController.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using KitX.Shared.WebCommand;
using KitX.Shared.WebCommand.Details;
using KitX.Shared.CSharp.WebCommand;
using KitX.Shared.CSharp.WebCommand.Details;
using System;

namespace KitX.Contract.CSharp;
Expand Down
2 changes: 1 addition & 1 deletion KitX Contracts/KitX.Contract.CSharp/IIdentityInterface.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using KitX.Shared.Plugin;
using KitX.Shared.CSharp.Plugin;
using System.ComponentModel.Composition;

namespace KitX.Contract.CSharp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</ItemGroup>

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

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Security.Cryptography;
using System.Text;

namespace KitX.FileFormats.ExtensionsPackage;
namespace KitX.FileFormats.CSharp.ExtensionsPackage;

public class Decoder
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Security.Cryptography;
using System.Text;

namespace KitX.FileFormats.ExtensionsPackage;
namespace KitX.FileFormats.CSharp.ExtensionsPackage;

using File = System.IO.File;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KitX.FileFormats.ExtensionsPackage;
namespace KitX.FileFormats.CSharp.ExtensionsPackage;

internal static class Header
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using CommandLine;

namespace KitX.FileFormats.ExtensionsPackage;
namespace KitX.FileFormats.CSharp.ExtensionsPackage;

public class Options
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<PropertyGroup>
<Title>KitX.FileFormats</Title>
<Title>KitX.FileFormats.CSharp</Title>
<Company>Crequency</Company>
<Authors>Dynesshely</Authors>
<Description>KitX File Formats' Encoders/Decoders</Description>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace KitX.Shared.Device;
namespace KitX.Shared.CSharp.Device;

public class DeviceInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KitX.Shared.Device;
namespace KitX.Shared.CSharp.Device;

public class DeviceLocator
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KitX.Shared.Device;
namespace KitX.Shared.CSharp.Device;

public enum OperatingSystems
{
Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<PropertyGroup>
<Title>KitX.Shared</Title>
<Title>KitX.Shared.CSharp</Title>
<Authors>Dynesshely</Authors>
<Company>Crequency</Company>
<Description>KitX Shared Components</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using KitX.Shared.Device;
using KitX.Shared.CSharp.Device;
using System.Collections.Generic;

namespace KitX.Shared.Loader;
namespace KitX.Shared.CSharp.Loader;

public class LoaderInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace KitX.Shared.Plugin;
namespace KitX.Shared.CSharp.Plugin;

public struct Function
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace KitX.Shared.Plugin;
namespace KitX.Shared.CSharp.Plugin;

public struct Parameter
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace KitX.Shared.Plugin;
namespace KitX.Shared.CSharp.Plugin;

public class PluginInfo
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using KitX.Shared.Plugin;
using KitX.Shared.CSharp.Plugin;
using System;
using System.Collections.Generic;

namespace KitX.Shared.WebCommand;
namespace KitX.Shared.CSharp.WebCommand;

public struct Command
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KitX.Shared.WebCommand;
namespace KitX.Shared.CSharp.WebCommand;

public enum CommandType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace KitX.Shared.WebCommand;
namespace KitX.Shared.CSharp.WebCommand;

public class Connector
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KitX.Shared.WebCommand.Details;
namespace KitX.Shared.CSharp.WebCommand.Details;

public class PluginWorkingDetail
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KitX.Shared.WebCommand.Infos;
namespace KitX.Shared.CSharp.WebCommand.Infos;

public static class CommandRequestInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace KitX.Shared.CSharp.WebCommand.Infos;

public struct CompressionInfo
{

}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KitX.Shared.WebCommand.Infos;
namespace KitX.Shared.CSharp.WebCommand.Infos;

public struct EncryptionInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using KitX.Shared.Device;
using KitX.Shared.WebCommand.Infos;
using KitX.Shared.CSharp.Device;
using KitX.Shared.CSharp.WebCommand.Infos;

namespace KitX.Shared.WebCommand;
namespace KitX.Shared.CSharp.WebCommand;

public struct Request
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using KitX.Shared.WebCommand.Infos;
using KitX.Shared.CSharp.WebCommand.Infos;
using System;

namespace KitX.Shared.WebCommand;
namespace KitX.Shared.CSharp.WebCommand;

public class RequestBuilder
{
Expand Down
6 changes: 0 additions & 6 deletions KitX.Shared/WebCommand/Infos/CompressionInfo.cs

This file was deleted.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# KitX Standard

This repo contains the standard part of [KitX Project](https://github.com/Crequency/KitX)

0 comments on commit a08a0e7

Please sign in to comment.