2023-08-31 18:00:51 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2023-09-13 15:49:59 -05:00
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2023-08-31 18:00:51 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
|
|
|
|
<PackageReference Include="Azure.Storage.Blobs" Version="12.16.0" />
|
2023-09-19 23:32:30 -05:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.21" />
|
2023-08-31 18:00:51 -05:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.9" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.9">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.5" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.9" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.9">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|