2023-05-15 20:29:07 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-05-16 22:01:03 +04:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
2023-05-15 20:29:07 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\UniversityBusinessLogic\UniversityBusinessLogic.csproj" />
|
|
|
|
<ProjectReference Include="..\UniversityContracts\UniversityContracts.csproj" />
|
|
|
|
<ProjectReference Include="..\UniversityDataBaseImplemet\UniversityDataBaseImplemet.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|