Installation
ConsoleTables is distributed as a NuGet package. You can add it to your .NET project using your preferred package management tool.
.NET CLI
Use the .NET CLI to add the package to your project's .csproj
file.
dotnet add package ConsoleTables
To install a specific version:
dotnet add package ConsoleTables --version 2.4.2
Package Manager Console
Within Visual Studio, you can use the Package Manager Console:
Install-Package ConsoleTables -Version 2.4.2
PackageReference (in .csproj)
Alternatively, you can add a PackageReference
directly to your .csproj
file:
<PackageReference Include="ConsoleTables" Version="2.4.2" />
Paket CLI
If you use Paket for dependency management:
paket add ConsoleTables --version 2.4.2