graphql-platform
graphql-platform copied to clipboard
HotChocolate.AspNetCore package installation issue
Product
HotChocolate.AspNetCore
Version
13.9.0
Link to minimal reproduction
No reproduction URL
Steps to reproduce
- Create ASP.NET Core Empty project
- 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
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.
Can you share your csproj file
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>
@tessierp was your project named HotChocolate?
Closing the issue as the most likely thing here is that the project was simply named HotChocolate.