| 123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <UserSecretsId>3c382f4e-81a2-4b63-929f-fefd29e950e8</UserSecretsId>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
- <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
- <PackageReference Include="Microsoft.OpenApi" />
- <PackageReference Include="Serilog.AspNetCore" />
- <PackageReference Include="Swashbuckle.AspNetCore" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Application\Application.csproj" />
- <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
- </ItemGroup>
- </Project>
|