28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="HotChocolate.AspNetCore" Version="13.5.1" />
|
|
<PackageReference Include="HotChocolate.Types" Version="13.5.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.13">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AutobusApi.Application\AutobusApi.Application.csproj" />
|
|
<ProjectReference Include="..\AutobusApi.Domain\AutobusApi.Domain.csproj" />
|
|
<ProjectReference Include="..\AutobusApi.Infrastructure\AutobusApi.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\AutobusApi.Persistence\AutobusApi.Persistence.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|