2024-08-19 17:49:44 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-04-30 21:22:23 +03:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-04-30 22:40:05 +03:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2024-04-30 21:22:23 +03:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-08-19 17:49:44 +04:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.19" />
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-08-16 13:44:43 +04:00
|
|
|
<PackageReference Include="Serilog" Version="4.0.1" />
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
|
|
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.2" />
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
|
2024-08-19 17:49:44 +04:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
2024-04-30 21:22:23 +03:00
|
|
|
</ItemGroup>
|
|
|
|
|
2024-08-16 13:44:43 +04:00
|
|
|
<ItemGroup>
|
2024-08-19 17:49:44 +04:00
|
|
|
<ProjectReference Include="..\ServiceStationBusinessLogic\ServiceStationBusinessLogic.csproj" />
|
|
|
|
<ProjectReference Include="..\ServiceStationContracts\ServiceStationContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\ServiceStationDataModels\ServiceStationDataModels.csproj" />
|
2024-08-16 13:44:43 +04:00
|
|
|
<ProjectReference Include="..\ServiceStationsDataBaseImplement\ServiceStationsDataBaseImplement.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-04-30 21:22:23 +03:00
|
|
|
</Project>
|