From 60238952d82b8fbd5c5534961ab2fc50d8817241 Mon Sep 17 00:00:00 2001 From: Loretta Date: Sat, 13 Dec 2025 10:11:39 +0100 Subject: [PATCH] Rename BenchmarkSuite1 to AyCode.Benchmark project Renamed the benchmark project from BenchmarkSuite1 to AyCode.Benchmark, updating the solution reference and moving all benchmark source files under the new project and namespace. No functional changes were made; this is a structural and naming reorganization for clarity and maintainability. --- .../AyCode.Benchmark.csproj | 0 {BenchmarkSuite1 => AyCode.Benchmark}/Program.cs | 2 +- .../SerializationBenchmarks.cs | 0 .../SignalRCommunicationBenchmarks.cs | 0 .../SignalRRoundTripBenchmarks.cs | 0 {BenchmarkSuite1 => AyCode.Benchmark}/TaskHelperBenchmarks.cs | 0 AyCode.Core.sln | 2 +- 7 files changed, 2 insertions(+), 2 deletions(-) rename BenchmarkSuite1/BenchmarkSuite1.csproj => AyCode.Benchmark/AyCode.Benchmark.csproj (100%) rename {BenchmarkSuite1 => AyCode.Benchmark}/Program.cs (99%) rename {BenchmarkSuite1 => AyCode.Benchmark}/SerializationBenchmarks.cs (100%) rename {BenchmarkSuite1 => AyCode.Benchmark}/SignalRCommunicationBenchmarks.cs (100%) rename {BenchmarkSuite1 => AyCode.Benchmark}/SignalRRoundTripBenchmarks.cs (100%) rename {BenchmarkSuite1 => AyCode.Benchmark}/TaskHelperBenchmarks.cs (100%) diff --git a/BenchmarkSuite1/BenchmarkSuite1.csproj b/AyCode.Benchmark/AyCode.Benchmark.csproj similarity index 100% rename from BenchmarkSuite1/BenchmarkSuite1.csproj rename to AyCode.Benchmark/AyCode.Benchmark.csproj diff --git a/BenchmarkSuite1/Program.cs b/AyCode.Benchmark/Program.cs similarity index 99% rename from BenchmarkSuite1/Program.cs rename to AyCode.Benchmark/Program.cs index 13356e9..8557e54 100644 --- a/BenchmarkSuite1/Program.cs +++ b/AyCode.Benchmark/Program.cs @@ -8,7 +8,7 @@ using MessagePack.Resolvers; using BenchmarkDotNet.Configs; using System.IO; -namespace BenchmarkSuite1 +namespace AyCode.Benchmark { internal class Program { diff --git a/BenchmarkSuite1/SerializationBenchmarks.cs b/AyCode.Benchmark/SerializationBenchmarks.cs similarity index 100% rename from BenchmarkSuite1/SerializationBenchmarks.cs rename to AyCode.Benchmark/SerializationBenchmarks.cs diff --git a/BenchmarkSuite1/SignalRCommunicationBenchmarks.cs b/AyCode.Benchmark/SignalRCommunicationBenchmarks.cs similarity index 100% rename from BenchmarkSuite1/SignalRCommunicationBenchmarks.cs rename to AyCode.Benchmark/SignalRCommunicationBenchmarks.cs diff --git a/BenchmarkSuite1/SignalRRoundTripBenchmarks.cs b/AyCode.Benchmark/SignalRRoundTripBenchmarks.cs similarity index 100% rename from BenchmarkSuite1/SignalRRoundTripBenchmarks.cs rename to AyCode.Benchmark/SignalRRoundTripBenchmarks.cs diff --git a/BenchmarkSuite1/TaskHelperBenchmarks.cs b/AyCode.Benchmark/TaskHelperBenchmarks.cs similarity index 100% rename from BenchmarkSuite1/TaskHelperBenchmarks.cs rename to AyCode.Benchmark/TaskHelperBenchmarks.cs diff --git a/AyCode.Core.sln b/AyCode.Core.sln index 89e41a2..23a1b14 100644 --- a/AyCode.Core.sln +++ b/AyCode.Core.sln @@ -44,7 +44,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution AyCode.Core.targets = AyCode.Core.targets EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BenchmarkSuite1", "BenchmarkSuite1\BenchmarkSuite1.csproj", "{A20861A9-411E-6150-BF5C-69E8196E5D22}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AyCode.Benchmark", "AyCode.Benchmark\AyCode.Benchmark.csproj", "{A20861A9-411E-6150-BF5C-69E8196E5D22}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AyCode.Services.Tests", "AyCode.Services.Tests\AyCode.Services.Tests.csproj", "{B8443014-1247-FB9C-7BF4-2CC944075A8B}" EndProject