You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.9 KiB
42 lines
1.9 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" Version="2.1.66" />
|
|
<PackageReference Include="EFCore.BulkExtensions" Version="9.0.1" />
|
|
<PackageReference Include="Hangfire" Version="1.8.20" />
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.20" />
|
|
<PackageReference Include="Hangfire.Core" Version="1.8.20" />
|
|
<PackageReference Include="Hangfire.SqlServer" Version="1.8.20" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.5">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.5">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
<PackageReference Include="ValueInjecter" Version="3.2.0" />
|
|
<PackageReference Include="Z.EntityFramework.Extensions.EFCore" Version="9.103.8.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Entities\" />
|
|
<Folder Include="Migrations\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TaskManager.Contracts\TaskManager.Contracts.csproj" />
|
|
<ProjectReference Include="..\TaskManager.EntityFramework\TaskManager.EntityFramework.csproj" />
|
|
<ProjectReference Include="..\TaskManager.Entity\TaskManager.Entity.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|