SteveSandersonMS / WebWindow

.NET Core library to open native OS windows containing web UI on Windows, Mac, and Linux. Experimental.
Apache License 2.0
1.99k stars 215 forks source link

Cycle Detected with dotnet add #60

Closed isaacrlevin closed 4 years ago

isaacrlevin commented 4 years ago

I am trying to use the pre-built nuget package, and when I add it via the CLI, I get

Error NU1108 Cycle detected. WebWindow -> WebWindow (>= 0.1.0-20191120.6). WebWindow C:\dev\WebWindow\WebWindow\WebWindow.csproj 1

Not sure what could be the cause of this. I have node and C++ installed

zeroskyx commented 4 years ago

I believe the problem is that your project's name is WebWindow and thus the reference in the .csproj file is not interpreted as a NuGet package but as a reference to itself.

Try changing your project name to something else like WebWindowTest

Enjoy!