2023-05-19 18:09:36 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2023-05-17 20:17:29 +04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-05-18 23:32:19 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CaseAccountingContracts\CaseAccountingContracts.csproj" />
|
2023-05-19 18:09:36 +04:00
|
|
|
|
<ProjectReference Include="..\CaseAccountingDataModels\CaseAccountingDataModels.csproj" />
|
2023-05-18 23:32:19 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-19 02:05:22 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="wwwroot\js\deal\" />
|
|
|
|
|
<Folder Include="wwwroot\js\hearing\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-17 20:17:29 +04:00
|
|
|
|
</Project>
|