mirror of
https://github.com/tonytins/cstdotnet.git
synced 2026-02-10 12:14:47 -05:00
- Changed preprocessor conditions to use DEBUG instead of NET8_0 for interop methods. - Updated NormalizeEntries and GetEntry methods to accept nullable string parameters. - Bumped project version to 2.1.101-alpha and updated changelog.
25 lines
No EOL
900 B
XML
25 lines
No EOL
900 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
|
|
<Version>2.1.101-alpha</Version>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Authors>Tony Bark</Authors>
|
|
<AllowMissingPrunePackageData>true</AllowMissingPrunePackageData>
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="DotNet.ReproducibleBuilds" Version="1.2.39" />
|
|
</ItemGroup>
|
|
|
|
</Project> |