|
3 | 3 | <PropertyGroup>
|
4 | 4 | <TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
|
5 | 5 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
| 6 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 7 | + <PackageId>Levenshtypo</PackageId> |
| 8 | + <Title>Levenshtypo</Title> |
| 9 | + </PropertyGroup> |
| 10 | + |
| 11 | + <PropertyGroup> |
| 12 | + <VersionPrefix>1.0.0</VersionPrefix> |
| 13 | + <Authors>Andrew J Said</Authors> |
| 14 | + <Description>Levenshtypo - a .NET fuzzy matching string dictionary |
| 15 | + |
| 16 | +Levenshtypo is a library which allows you to search large data sets by fuzzy matching the key strings. |
| 17 | + |
| 18 | +The dataset is loaded upfront as a sequence of key-value pairs. Once loaded it allows searching for the values which are up to a certain Levenshtein Distance away from a query string. |
| 19 | + |
| 20 | +Levenshtein Distance is the number of character insertions, deletions or substitutions required to transform one string into another.</Description> |
| 21 | + <Copyright>MIT</Copyright> |
| 22 | + <PackageProjectUrl>https://github.com/andrewjsaid/levenshtypo</PackageProjectUrl> |
| 23 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 24 | + <RepositoryUrl>https://github.com/andrewjsaid/levenshtypo</RepositoryUrl> |
| 25 | + <PackageTags>levenshtein;string matching;fuzzy string matching;trie;fuzzy trie;levenshtein distance;levenshtein automata</PackageTags> |
| 26 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
6 | 27 | </PropertyGroup>
|
7 | 28 |
|
8 | 29 | <PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
|
|
26 | 47 | <AdditionalFiles Include="PublicAPI/$(TargetFramework)/PublicAPI.Unshipped.txt" />
|
27 | 48 | </ItemGroup>
|
28 | 49 |
|
| 50 | + <ItemGroup> |
| 51 | + <None Include="..\..\LICENSE"> |
| 52 | + <Pack>True</Pack> |
| 53 | + <PackagePath>\</PackagePath> |
| 54 | + </None> |
| 55 | + <None Include="..\..\README.md"> |
| 56 | + <Pack>True</Pack> |
| 57 | + <PackagePath>\</PackagePath> |
| 58 | + </None> |
| 59 | + </ItemGroup> |
| 60 | + |
29 | 61 | </Project>
|
0 commit comments