ChilliCream / graphql-platform

Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Banana Cake Pop the awesome Monaco based GraphQL IDE.
https://chillicream.com
MIT License
4.96k stars 722 forks source link

HotChocolate.AspNetCore package installation issue #7071

Open tessierp opened 3 weeks ago

tessierp commented 3 weeks ago

Product

HotChocolate.AspNetCore

Version

13.9.0

Link to minimal reproduction

No reproduction URL

Steps to reproduce

  1. Create ASP.NET Core Empty project
  2. Try to add HotChocolate.AspNetCore

What is expected?

Being able to install the package without any issues

What is actually happening?

Trying to install the package returns a NU1108 error, Cycle Detected.

Relevant log output

image

Additional context

I tried installing other packages to see if something was wrong with my Visual Studio 2022 installation and I was able to install Automapper, Autofac and a few others without any issues. I have only faced "Cycles Detected" issue with HotChocolate.

PascalSenn commented 3 weeks ago

Can you share your csproj file

tessierp commented 3 weeks ago

Can you share your csproj file

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>

        <TargetFramework>net8.0</TargetFramework>

        <Nullable>enable</Nullable>

        <ImplicitUsings>enable</ImplicitUsings>

  </PropertyGroup>

        <ItemGroup>

               <PackageReference Include="HotChocolate.AspNetCore" Version="13.9.0" />

        </ItemGroup>

</Project>