2024-04-30 22:59:25 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-04-29 21:40:11 +04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-04-30 19:52:17 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-05-01 23:12:54 +04:00
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.16" />
|
2024-04-30 19:52:17 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-04-30 22:59:25 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SchoolBusinessLogic\SchoolBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SchoolContracts\SchoolContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SchoolDatabaseImplement\SchoolDatabaseImplement.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SchoolsDataModels\SchoolDataModels.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-04-29 21:40:11 +04:00
|
|
|
|
</Project>
|