Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>9.0.5</Version>
<Version>9.0.6</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/// <summary>
/// 二进制 与 Byte 数组转换方法
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

/// <summary>
/// 十六进制 与 Byte 数组转换方法
Expand Down
2 changes: 0 additions & 2 deletions test/UnitTestTcpSocket/BinConverterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions test/UnitTestTcpSocket/HexConverterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions test/UnitTestTcpSocket/UnitTestTcpSocket.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<ItemGroup>
<Using Remove="Microsoft.AspNetCore.Components" />
<Using Remove="BootstrapBlazor.Components" />
<Using Include="BootstrapBlazor.DataAdapters" />
<Using Include="BootstrapBlazor.DataHandlers" />
<Using Include="BootstrapBlazor.DataConverters" />
<Using Include="BootstrapBlazor.Socket.DataAdapters" />
<Using Include="BootstrapBlazor.Socket.DataHandlers" />
<Using Include="BootstrapBlazor.Socket.DataConverters" />
<Using Include="BootstrapBlazor.TcpSocket" />
</ItemGroup>

Expand Down