-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathConsoleTable.Text.csproj
More file actions
24 lines (20 loc) · 1.1 KB
/
ConsoleTable.Text.csproj
File metadata and controls
24 lines (20 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
<!-- NuGet Package Metadata -->
<PackageId>ConsoleTable.Text</PackageId>
<Version>2.1.0</Version>
<Authors>Bruno Van Thournout</Authors>
<Description>A library for creating a formatted string table with customizable headers, footers, rows and easy to use styling options.</Description>
<PackageProjectUrl>https://github.com/BrunoVT1992/ConsoleTable</PackageProjectUrl>
<RepositoryUrl>https://github.com/BrunoVT1992/ConsoleTable</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>console;table;tables;consoletable;consoletables;console-table;texttable;text-table;output;format;formatting;cli;string;text;ct;fluent;grid</PackageTags>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>