| 12345678910111213141516171819 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <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="MimeKit" />
- <PackageReference Include="Serilog.AspNetCore" />
- <PackageReference Include="Serilog.Sinks.File" />
- <PackageReference Include="Swashbuckle.AspNetCore" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Application\Application.csproj" />
- <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
- </ItemGroup>
- </Project>
|