2023-05-17 20:17:29 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-17 23:28:43 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\CaseAccountingBusinessLogics\CaseAccountingBusinessLogic.csproj" />
|
|
|
|
<ProjectReference Include="..\CaseAccountingContracts\CaseAccountingContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\CaseAccountingDataBaseImplement\CaseAccountingDataBaseImplement.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-17 20:17:29 +04:00
|
|
|
</Project>
|