21 lines
692 B
XML
21 lines
692 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="EPPlus" Version="7.5.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="5.0.17" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AccountMangement.Infrastructure.EFCore\AccountMangement.Infrastructure.EFCore.csproj" />
|
|
<ProjectReference Include="..\CompanyManagment.EFCore\CompanyManagment.EFCore.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="CaseManagement\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|