17 lines
598 B
XML
17 lines
598 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CarCenterBusinessLogic\CarCenterBusinessLogic.csproj" />
|
|
<ProjectReference Include="..\CarCenterContracts\CarCenterContracts.csproj" />
|
|
<ProjectReference Include="..\CarCenterDataBaseImplement\CarCenterDataBaseImplement.csproj" />
|
|
<ProjectReference Include="..\CarCenterDataModels\CarCenterDataModels.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|