Replaced all instances of "Bridgekeeper" with "Mithrandir" across the solution. Updated project files, folder structures, namespaces, and references to reflect the new naming convention.
26 lines
921 B
XML
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>
|