From 533219e7392c8d09db646d45025c06b33db9fa07 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Fri, 29 Aug 2025 09:10:30 +0800 Subject: [PATCH 1/3] =?UTF-8?q?refactor:=20=E6=9B=B4=E6=94=B9=E5=91=BD?= =?UTF-8?q?=E5=90=8D=E7=A9=BA=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BootstrapBlazor.Socket/DataConverter/BinConverter.cs | 4 +--- .../BootstrapBlazor.Socket/DataConverter/HexConverter.cs | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/extensions/BootstrapBlazor.Socket/DataConverter/BinConverter.cs b/src/extensions/BootstrapBlazor.Socket/DataConverter/BinConverter.cs index fd4de25d..0c8f3b7e 100644 --- a/src/extensions/BootstrapBlazor.Socket/DataConverter/BinConverter.cs +++ b/src/extensions/BootstrapBlazor.Socket/DataConverter/BinConverter.cs @@ -2,9 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Website: https://www.blazor.zone or https://argozhang.github.io/ -using System.Text; - -namespace BootstrapBlazorSocket.DataConverter; +namespace BootstrapBlazor.Socket.DataConverters; /// /// 二进制 与 Byte 数组转换方法 diff --git a/src/extensions/BootstrapBlazor.Socket/DataConverter/HexConverter.cs b/src/extensions/BootstrapBlazor.Socket/DataConverter/HexConverter.cs index 41173163..7d6b95c7 100644 --- a/src/extensions/BootstrapBlazor.Socket/DataConverter/HexConverter.cs +++ b/src/extensions/BootstrapBlazor.Socket/DataConverter/HexConverter.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Website: https://www.blazor.zone or https://argozhang.github.io/ -namespace BootstrapBlazor.Socket.DataConverter; +namespace BootstrapBlazor.Socket.DataConverters; /// /// 十六进制 与 Byte 数组转换方法 From a2535baa3283ff13a64a59c2730f76fa1ee41d22 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Fri, 29 Aug 2025 09:10:39 +0800 Subject: [PATCH 2/3] chore: bump version 9.0.6 --- .../BootstrapBlazor.Socket/BootstrapBlazor.Socket.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extensions/BootstrapBlazor.Socket/BootstrapBlazor.Socket.csproj b/src/extensions/BootstrapBlazor.Socket/BootstrapBlazor.Socket.csproj index ec23b53b..57639b71 100644 --- a/src/extensions/BootstrapBlazor.Socket/BootstrapBlazor.Socket.csproj +++ b/src/extensions/BootstrapBlazor.Socket/BootstrapBlazor.Socket.csproj @@ -1,7 +1,7 @@  - 9.0.5 + 9.0.6 From b4557fc097783f1a8169c135299a1901dba30a57 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Fri, 29 Aug 2025 09:11:24 +0800 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E5=8D=95?= =?UTF-8?q?=E5=85=83=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/UnitTestTcpSocket/BinConverterTest.cs | 2 -- test/UnitTestTcpSocket/HexConverterTest.cs | 2 -- test/UnitTestTcpSocket/UnitTestTcpSocket.csproj | 6 +++--- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/test/UnitTestTcpSocket/BinConverterTest.cs b/test/UnitTestTcpSocket/BinConverterTest.cs index e2fa6c0e..d8607c72 100644 --- a/test/UnitTestTcpSocket/BinConverterTest.cs +++ b/test/UnitTestTcpSocket/BinConverterTest.cs @@ -2,8 +2,6 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Website: https://www.blazor.zone or https://argozhang.github.io/ -using BootstrapBlazor.Components.DataConverter; - namespace UnitTestTcpSocket; public class BinConverterTest diff --git a/test/UnitTestTcpSocket/HexConverterTest.cs b/test/UnitTestTcpSocket/HexConverterTest.cs index c7b528f7..840b07f8 100644 --- a/test/UnitTestTcpSocket/HexConverterTest.cs +++ b/test/UnitTestTcpSocket/HexConverterTest.cs @@ -2,8 +2,6 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Website: https://www.blazor.zone or https://argozhang.github.io/ -using BootstrapBlazor.Components.DataConverter; - namespace UnitTestTcpSocket; public class HexConverterTest diff --git a/test/UnitTestTcpSocket/UnitTestTcpSocket.csproj b/test/UnitTestTcpSocket/UnitTestTcpSocket.csproj index 3a0e5dc4..92146715 100644 --- a/test/UnitTestTcpSocket/UnitTestTcpSocket.csproj +++ b/test/UnitTestTcpSocket/UnitTestTcpSocket.csproj @@ -20,9 +20,9 @@ - - - + + +