21 lines
627 B
XML
21 lines
627 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GraphQL" />
|
|
<PackageReference Include="GraphQL.StarWars" />
|
|
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" />
|
|
<PackageReference Include="GraphQL.Server.Ui.Playground" />
|
|
<PackageReference Include="Microsoft.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\dependency-libs\TestApplication.Shared\TestApplication.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- Reconfigure default usings template -->
|
|
<ItemGroup>
|
|
<Using Remove="System.Net.Http.Json"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|