gandalf-reborn/src/dotnet/Suspectus.Gandalf.Mithrandir.Api/Suspectus.Gandalf.Mithrandir.Api.csproj
chris cfe3ce76c8 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.
2025-05-31 03:28:32 +02:00

26 lines
921 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2"/>
<PackageReference Include="MediatR" Version="12.4.1" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="Contracts\Auth\Commands\" />
<Folder Include="Contracts\Auth\Queries\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Suspectus.Gandalf.Mithrandir.Contracts\Suspectus.Gandalf.Mithrandir.Contracts.csproj" />
<ProjectReference Include="..\Suspectus.Gandalf.Palantir.Client\Suspectus.Gandalf.Palantir.Client.csproj" />
</ItemGroup>
</Project>