minhhungit / ConsoleTableExt

A fluent library to print out a nicely formatted table in a console application C#
MIT License
323 stars 36 forks source link

Could not install ConsoleTableExt from the NuGet tool #41

Closed lonchanick closed 1 year ago

lonchanick commented 1 year ago

Hi, thanks for your job.

On VSC, I tried to install this extension from the NuGet tool console

Install-Package ConsoleTableExt

And I got this:

Error Package restore failed. Rolling back package changes for 'ConsoleTableExt'. Severity Code Description Project File Line Suppression State Error NU1108 Cycle detected. ConsoleTableExt -> ConsoleTableExt (>= 3.2.0). ConsoleTableExt D:.NET FOLDER\C# ACADEMY\Projects\ConsoleTableExt\ConsoleTableExt.csproj 1

Thanks :D!

minhhungit commented 1 year ago

@lonchanick try to use this command:

NuGet\Install-Package ConsoleTableExt -Version 3.2.0

Check more here https://www.nuget.org/packages/ConsoleTableExt/3.2.0

minhhungit commented 1 year ago

Or installing it manual using NuGet Package Manager

lonchanick commented 1 year ago

Ok Thanks!