Skip to content

Commit 1596adc

Browse files
authored
feat(Socket): update namesapce (#558)
* refactor: 更改命名空间 * chore: bump version 9.0.6 * chore: 更新单元测试
1 parent f6f788e commit 1596adc

6 files changed

Lines changed: 6 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
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.5</Version>
4+
<Version>9.0.6</Version>
55
</PropertyGroup>
66

77
<PropertyGroup>

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +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-
using System.Text;
6-
7-
namespace BootstrapBlazorSocket.DataConverter;
5+
namespace BootstrapBlazor.Socket.DataConverters;
86

97
/// <summary>
108
/// 二进制 与 Byte 数组转换方法

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.Socket.DataConverter;
5+
namespace BootstrapBlazor.Socket.DataConverters;
66

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

test/UnitTestTcpSocket/BinConverterTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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.DataConverter;
6-
75
namespace UnitTestTcpSocket;
86

97
public class BinConverterTest

test/UnitTestTcpSocket/HexConverterTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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.DataConverter;
6-
75
namespace UnitTestTcpSocket;
86

97
public class HexConverterTest

test/UnitTestTcpSocket/UnitTestTcpSocket.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<ItemGroup>
2121
<Using Remove="Microsoft.AspNetCore.Components" />
2222
<Using Remove="BootstrapBlazor.Components" />
23-
<Using Include="BootstrapBlazor.DataAdapters" />
24-
<Using Include="BootstrapBlazor.DataHandlers" />
25-
<Using Include="BootstrapBlazor.DataConverters" />
23+
<Using Include="BootstrapBlazor.Socket.DataAdapters" />
24+
<Using Include="BootstrapBlazor.Socket.DataHandlers" />
25+
<Using Include="BootstrapBlazor.Socket.DataConverters" />
2626
<Using Include="BootstrapBlazor.TcpSocket" />
2727
</ItemGroup>
2828

0 commit comments

Comments
 (0)