Files
todo/src/backend/server/src/Todo.Infrastructure/Todo.Infrastructure.csproj
Kasper Juul Hermansen 1e3cc25baf
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update dotnet monorepo
2025-02-12 03:24:35 +01:00

22 lines
561 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="9.0.2"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Todo.Core\Todo.Core.csproj"/>
</ItemGroup>
</Project>