| 1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net10.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.2" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.2" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Application\Application.csproj" />
- <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
- </ItemGroup>
- </Project>
|