khalidabuhakmeh / ConsoleTables

Print out a nicely formatted table in a console application C#
MIT License
944 stars 157 forks source link

No updates in 2 years #62

Closed samsmithnz closed 1 year ago

samsmithnz commented 2 years ago

I've noticed there haven't been any updates in a few years. @khalidabuhakmeh do you need help? Nuget is showing there are 700k of downloads - so there is plenty of demand!

khalidabuhakmeh commented 2 years ago

For the most part I feel like this project is complete, but is there something you feel is missing?

alexeygritsenko commented 1 year ago

For the most part I feel like this project is complete, but is there something you feel is missing?

let me answer, there are a few important things that are missing 1 build .NETStandard 2.0 to minimize dependencies 2 support for creating an instance from a System.Data.DataTable

like this

System.Data.DataTable data = //fetch from db
ConsoleTables.ConsoleTable table = new ConsoleTable(data);
khalidabuhakmeh commented 1 year ago

Just published version 2.5.0 that targets .NET Standard 2.1. Cheers.

alexeygritsenko commented 1 year ago

Just published version 2.5.0 that targets .NET Standard 2.1. Cheers.

good job, but it only got worse for me. the fact is that at work we use a common set of libraries for projects net 6.0 and net framework 4.8. Now this update has cut us off, because .NET Standard 2.1 doesn't support it. Looks much better and more versatile .NETStandard 2.0

compatibility table https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0