From cfe3ce76c85141b9e9827a8b439ec581f1abb5d0 Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 31 May 2025 03:28:32 +0200 Subject: [PATCH] Rename Bridgekeeper project to Mithrandir. Replaced all instances of "Bridgekeeper" with "Mithrandir" across the solution. Updated project files, folder structures, namespaces, and references to reflect the new naming convention. --- .../Controllers/AppProxyController.cs | 2 +- .../Controllers/AuthController.cs | 2 +- .../Program.cs | 2 +- .../Properties/launchSettings.json | 0 .../Suspectus.Gandalf.Mithrandir.Api.csproj} | 2 +- .../appsettings.Development.json | 0 .../appsettings.json | 0 .../Suspectus.Gandalf.Mithrandir.Contracts.csproj} | 0 src/dotnet/Suspectus.Gandalf.sln | 4 ++-- 9 files changed, 6 insertions(+), 6 deletions(-) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Api => Suspectus.Gandalf.Mithrandir.Api}/Controllers/AppProxyController.cs (98%) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Api => Suspectus.Gandalf.Mithrandir.Api}/Controllers/AuthController.cs (98%) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Api => Suspectus.Gandalf.Mithrandir.Api}/Program.cs (94%) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Api => Suspectus.Gandalf.Mithrandir.Api}/Properties/launchSettings.json (100%) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Api/Suspectus.Gandalf.Bridgekeeper.Api.csproj => Suspectus.Gandalf.Mithrandir.Api/Suspectus.Gandalf.Mithrandir.Api.csproj} (86%) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Api => Suspectus.Gandalf.Mithrandir.Api}/appsettings.Development.json (100%) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Api => Suspectus.Gandalf.Mithrandir.Api}/appsettings.json (100%) rename src/dotnet/{Suspectus.Gandalf.Bridgekeeper.Contracts/Suspectus.Gandalf.Bridgekeeper.Contracts.csproj => Suspectus.Gandalf.Mithrandir.Contracts/Suspectus.Gandalf.Mithrandir.Contracts.csproj} (100%) diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Controllers/AppProxyController.cs b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Controllers/AppProxyController.cs similarity index 98% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Controllers/AppProxyController.cs rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Controllers/AppProxyController.cs index 62e2ec7..06e635a 100644 --- a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Controllers/AppProxyController.cs +++ b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Controllers/AppProxyController.cs @@ -6,7 +6,7 @@ using Suspectus.Gandalf.Core.Abstractions.DTOs.Internal.Auth; using Suspectus.Gandalf.Core.Abstractions.Extensions; using Suspectus.Gandalf.Palantir.Client; -namespace Suspectus.Gandalf.Bridgekeeper.Api.Controllers; +namespace Suspectus.Gandalf.Mithrandir.Api.Controllers; [ApiController] [Route("api/[controller]")] diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Controllers/AuthController.cs b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Controllers/AuthController.cs similarity index 98% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Controllers/AuthController.cs rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Controllers/AuthController.cs index 9e64c3e..9148b6e 100644 --- a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Controllers/AuthController.cs +++ b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Controllers/AuthController.cs @@ -5,7 +5,7 @@ using Suspectus.Gandalf.Core.Abstractions.DTOs.Internal.Auth; using Suspectus.Gandalf.Core.Abstractions.Extensions; using Suspectus.Gandalf.Palantir.Client; -namespace Suspectus.Gandalf.Bridgekeeper.Api.Controllers; +namespace Suspectus.Gandalf.Mithrandir.Api.Controllers; [ApiController] [Route("api/[controller]")] diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Program.cs b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Program.cs similarity index 94% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Program.cs rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Program.cs index d7da371..98bf490 100644 --- a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Program.cs +++ b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Program.cs @@ -1,4 +1,4 @@ -using Suspectus.Gandalf.Bridgekeeper.Api.Controllers; +using Suspectus.Gandalf.Mithrandir.Api.Controllers; using Suspectus.Gandalf.Palantir.Client.Extensions; var builder = WebApplication.CreateBuilder(args); diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Properties/launchSettings.json b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Properties/launchSettings.json similarity index 100% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Properties/launchSettings.json rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Properties/launchSettings.json diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Suspectus.Gandalf.Bridgekeeper.Api.csproj b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Suspectus.Gandalf.Mithrandir.Api.csproj similarity index 86% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Suspectus.Gandalf.Bridgekeeper.Api.csproj rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Suspectus.Gandalf.Mithrandir.Api.csproj index 78fe9a0..b2cf415 100644 --- a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/Suspectus.Gandalf.Bridgekeeper.Api.csproj +++ b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Suspectus.Gandalf.Mithrandir.Api.csproj @@ -18,7 +18,7 @@ - + diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/appsettings.Development.json b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/appsettings.Development.json similarity index 100% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/appsettings.Development.json rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Api/appsettings.Development.json diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/appsettings.json b/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/appsettings.json similarity index 100% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Api/appsettings.json rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Api/appsettings.json diff --git a/src/dotnet/Suspectus.Gandalf.Bridgekeeper.Contracts/Suspectus.Gandalf.Bridgekeeper.Contracts.csproj b/src/dotnet/Suspectus.Gandalf.Mithrandir.Contracts/Suspectus.Gandalf.Mithrandir.Contracts.csproj similarity index 100% rename from src/dotnet/Suspectus.Gandalf.Bridgekeeper.Contracts/Suspectus.Gandalf.Bridgekeeper.Contracts.csproj rename to src/dotnet/Suspectus.Gandalf.Mithrandir.Contracts/Suspectus.Gandalf.Mithrandir.Contracts.csproj diff --git a/src/dotnet/Suspectus.Gandalf.sln b/src/dotnet/Suspectus.Gandalf.sln index 60eb5f5..eeffb5c 100644 --- a/src/dotnet/Suspectus.Gandalf.sln +++ b/src/dotnet/Suspectus.Gandalf.sln @@ -12,13 +12,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Mithrandir", "Mithrandir", EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Palantir", "Palantir", "{A82EA24B-1379-41B2-A363-CDCBF9F18833}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Suspectus.Gandalf.Bridgekeeper.Api", "Suspectus.Gandalf.Bridgekeeper.Api\Suspectus.Gandalf.Bridgekeeper.Api.csproj", "{264B8A9E-7A70-4DE3-906B-7E0722D09205}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Suspectus.Gandalf.Mithrandir.Api", "Suspectus.Gandalf.Mithrandir.Api\Suspectus.Gandalf.Mithrandir.Api.csproj", "{264B8A9E-7A70-4DE3-906B-7E0722D09205}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{3E672AE3-D2E4-49C0-AB18-65E799E5277A}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Suspectus.Gandalf.Core.Abstractions", "Suspectus.Gandalf.Core.Abstractions\Suspectus.Gandalf.Core.Abstractions.csproj", "{F8333692-CA81-4298-A2F5-CF7D3ACCE230}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Suspectus.Gandalf.Bridgekeeper.Contracts", "Suspectus.Gandalf.Bridgekeeper.Contracts\Suspectus.Gandalf.Bridgekeeper.Contracts.csproj", "{4ED2E3BC-FE29-4041-8274-987EB60BD5FF}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Suspectus.Gandalf.Mithrandir.Contracts", "Suspectus.Gandalf.Mithrandir.Contracts\Suspectus.Gandalf.Mithrandir.Contracts.csproj", "{4ED2E3BC-FE29-4041-8274-987EB60BD5FF}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Suspectus.Gandalf.Palantir.Client", "Suspectus.Gandalf.Palantir.Client\Suspectus.Gandalf.Palantir.Client.csproj", "{1161299F-3623-42C9-9A8D-AB7664BF5FD6}" EndProject