cstdotnet/CSTNet/CSTNet.csproj
Tony Bark df7197609d Preliminary support for .NET 8
- Native compatibility
- Parser can now be consumed from non-.NET programming languages
2023-08-12 19:05:45 -04:00

25 lines
No EOL
1,008 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.1;net8.0</TargetFrameworks>
<Version>2.0.200-beta1</Version>
<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]^)
CSTNet provides you the framework for parsing the CST format.
</PackageDescription>
<RepositoryUrl>https://github.com/tonytins/cstdotnet</RepositoryUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
</PropertyGroup>
<!-- Support AOT on .NET 8+ -->
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
</Project>