cstdotnet/CSTNet/CSTNet.csproj

25 lines
885 B
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2024-04-09 09:26:59 -04:00
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<Version>2.2.100-alpha</Version>
2024-04-09 09:26:59 -04:00
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<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]^)
2024-04-09 09:26:59 -04:00
CSTNet provides you the framework for parsing the CST format.
</PackageDescription>
<RepositoryUrl>https://github.com/tonytins/cstdotnet</RepositoryUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
</PropertyGroup>
2024-04-09 09:26:59 -04:00
<!-- Support AOT on .NET 8+ -->
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
</Project>