Files
graphql-test/Presentation/Presentation.csproj
2025-11-26 16:50:06 -03:00

31 lines
1.4 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>GraphQLTEST</RootNamespace>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GreenDonut.Data" Version="16.0.0-p.10.1" />
<PackageReference Include="GreenDonut.Data.EntityFramework" Version="16.0.0-p.10.1" />
<PackageReference Include="HotChocolate" Version="16.0.0-p.10.1" />
<PackageReference Include="HotChocolate.AspNetCore" Version="16.0.0-p.10.1" />
<PackageReference Include="HotChocolate.AspNetCore.CommandLine" Version="16.0.0-p.10.1" />
<PackageReference Include="HotChocolate.AspNetCore.Subscriptions" Version="10.5.5" />
<PackageReference Include="HotChocolate.Data" Version="16.0.0-p.10.1" />
<PackageReference Include="HotChocolate.Types.Analyzers" Version="16.0.0-p.10.1" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Application\Application.csproj" />
<ProjectReference Include="..\Domain\Domain.csproj" />
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
</ItemGroup>
</Project>