2020-12-13 07:48:15 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-08-10 18:37:03 -04:00
|
|
|
<TargetFrameworks>net6.0;netstandard2.1</TargetFrameworks>
|
|
|
|
<Version>2.0.103</Version>
|
2021-11-19 13:52:26 -05:00
|
|
|
<Nullable>enable</Nullable>
|
2022-07-21 10:23:31 -04:00
|
|
|
<LangVersion>latest</LangVersion>
|
2021-11-19 13:52:26 -05:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2022-07-21 10:23:31 -04:00
|
|
|
<Authors>Tony Bark</Authors>
|
2020-12-13 07:48:15 -05:00
|
|
|
<PackageDescription>
|
2023-08-10 18:37:03 -04:00
|
|
|
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]^)
|
2020-12-13 07:48:15 -05:00
|
|
|
|
2022-07-21 10:23:31 -04:00
|
|
|
CSTNet provides you the framework for parsing the CST format.
|
2020-12-13 07:48:15 -05:00
|
|
|
</PackageDescription>
|
2022-07-21 10:23:31 -04:00
|
|
|
<RepositoryUrl>https://github.com/tonytins/cstdotnet</RepositoryUrl>
|
2022-10-10 02:59:42 -04:00
|
|
|
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
|
2020-12-13 07:48:15 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-10-10 03:47:01 -04:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-10-10 02:54:46 -04:00
|
|
|
</Project>
|