cstdotnet/CSTNet/CSTNet.csproj

20 lines
817 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-07-21 10:23:31 -04:00
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
<Version>1.0.400-beta1</Version>
<Nullable>enable</Nullable>
2022-07-21 10:23:31 -04:00
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
2022-07-21 10:23:31 -04:00
<Authors>Tony Bark</Authors>
<PackageDescription>
Caret-Separated Text (or CST) is a key-value pair format represented by digits or words as keys and the value as text enclosed between carets. ([key] ^[value]^)
2022-07-21 10:23:31 -04:00
CSTNet provides you the framework for parsing the CST format.
</PackageDescription>
2022-07-21 10:23:31 -04:00
<RepositoryUrl>https://github.com/tonytins/cstdotnet</RepositoryUrl>
<PackageLicenseExpression>BSD 3-Clause</PackageLicenseExpression>
</PropertyGroup>
</Project>