Skip to content

Commit b8131da

Browse files
committed
chore: update namespace
1 parent 0aa2df3 commit b8131da

37 files changed

Lines changed: 41 additions & 41 deletions

src/extensions/BootstrapBlazor.Socket/BootstrapBlazor.Socket.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>9.0.4</Version>
4+
<Version>9.0.5</Version>
55
</PropertyGroup>
66

77
<PropertyGroup>
@@ -34,9 +34,9 @@
3434
</ItemGroup>
3535

3636
<ItemGroup>
37-
<Using Include="BootstrapBlazor.DataAdapters" />
38-
<Using Include="BootstrapBlazor.DataHandlers" />
39-
<Using Include="BootstrapBlazor.DataConverters" />
37+
<Using Include="BootstrapBlazor.Socket.DataAdapters" />
38+
<Using Include="BootstrapBlazor.Socket.DataHandlers" />
39+
<Using Include="BootstrapBlazor.Socket.DataConverters" />
4040
</ItemGroup>
4141

4242
</Project>

src/extensions/BootstrapBlazor.Socket/DataAdapter/DataPackageAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

5-
namespace BootstrapBlazor.DataAdapters;
5+
namespace BootstrapBlazor.Socket.DataAdapters;
66

77
/// <summary>
88
/// Provides a base implementation for adapting data packages between different systems or formats.

src/extensions/BootstrapBlazor.Socket/DataAdapter/IDataPackageAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

5-
namespace BootstrapBlazor.DataAdapters;
5+
namespace BootstrapBlazor.Socket.DataAdapters;
66

77
/// <summary>
88
/// Defines an adapter for handling and transmitting data packages to a target destination.

src/extensions/BootstrapBlazor.Socket/DataConverter/BinConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System.Text;
66

7-
namespace BootstrapBlazor.Components.DataConverter;
7+
namespace BootstrapBlazorSocket.DataConverter;
88

99
/// <summary>
1010
/// 二进制 与 Byte 数组转换方法

src/extensions/BootstrapBlazor.Socket/DataConverter/DataConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

5-
using BootstrapBlazor.Components;
5+
using BootstrapBlazor.Socket.Logging;
66
using System.Reflection;
77

8-
namespace BootstrapBlazor.DataConverters;
8+
namespace BootstrapBlazor.Socket.DataConverters;
99

1010
/// <summary>
1111
/// Provides a base class for converting socket data into a specified entity type.

src/extensions/BootstrapBlazor.Socket/DataConverter/DataConverterCollections.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Linq.Expressions;
77
using System.Reflection;
88

9-
namespace BootstrapBlazor.DataConverters;
9+
namespace BootstrapBlazor.Socket.DataConverters;
1010

1111
/// <summary>
1212
/// 数据转换器集合类

src/extensions/BootstrapBlazor.Socket/DataConverter/DataPropertyConverterAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

5-
namespace BootstrapBlazor.DataConverters;
5+
namespace BootstrapBlazor.Socket.DataConverters;
66

77
/// <summary>
88
/// Represents an attribute used to mark a field as a socket data field.

src/extensions/BootstrapBlazor.Socket/DataConverter/DataTypeConverterAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

5-
namespace BootstrapBlazor.DataConverters;
5+
namespace BootstrapBlazor.Socket.DataConverters;
66

77
/// <summary>
88
///

src/extensions/BootstrapBlazor.Socket/DataConverter/HexConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

5-
namespace BootstrapBlazor.Components.DataConverter;
5+
namespace BootstrapBlazor.Socket.DataConverter;
66

77
/// <summary>
88
/// 十六进制 与 Byte 数组转换方法

src/extensions/BootstrapBlazor.Socket/DataConverter/IDataConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

5-
namespace BootstrapBlazor.DataConverters;
5+
namespace BootstrapBlazor.Socket.DataConverters;
66

77
/// <summary>
88
/// Socket 数据转换器接口

0 commit comments

Comments
 (0)