Skip to content

Commit fc180df

Browse files
committed
Add nuget details
1 parent 35f6bcf commit fc180df

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

src/Levenshtypo/Levenshtypo.csproj

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
<PropertyGroup>
44
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
55
<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>
627
</PropertyGroup>
728

829
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
@@ -26,4 +47,15 @@
2647
<AdditionalFiles Include="PublicAPI/$(TargetFramework)/PublicAPI.Unshipped.txt" />
2748
</ItemGroup>
2849

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+
2961
</Project>

0 commit comments

Comments
 (0)