16 lines
518 B
XML
16 lines
518 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CarCenterBusinessLogics\CarCenterBusinessLogics.csproj" />
|
|
<ProjectReference Include="..\CarCenterContracts\CarCenterContracts.csproj" />
|
|
<ProjectReference Include="..\CarCenterDatabaseImplement\CarCenterDatabaseImplement.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|