2023-05-19 23:29:13 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
2023-05-25 01:26:13 +04:00
|
|
|
<ItemGroup>
|
2023-05-19 23:29:13 +04:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2023-05-25 01:26:13 +04:00
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
|
2023-05-19 23:29:13 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\TourCompanyBusinessLogic\TourCompanyBusinessLogic.csproj" />
|
|
|
|
<ProjectReference Include="..\TourCompanyDatabaseImplement\TourCompanyDatabaseImplement.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|