MSpell 1.0.21
dotnet add package MSpell --version 1.0.21
NuGet\Install-Package MSpell -Version 1.0.21
<PackageReference Include="MSpell" Version="1.0.21" />
paket add MSpell --version 1.0.21
#r "nuget: MSpell, 1.0.21"
// Install MSpell as a Cake Addin #addin nuget:?package=MSpell&version=1.0.21 // Install MSpell as a Cake Tool #tool nuget:?package=MSpell&version=1.0.21
MSpell
Identifies spelling mistakes and suggests replacements.
Getting Started
Install the nuget package to get started.
The usage is:
var spellChecker = new MSpell.SpellChecker();
var dictionary = new List<string> {"moon","soon","mono","windows"};
spellChecker.Train(dictionary);
// To get all word in the dictionry within 1 edit distance
var suggestion = spellChecker.GetSuggestedWords("mon", 1);
// The output is sorted by editdistance, prefixmatch, wordlength in order The output should be mono,moon.
Versioning
We use appveyor for versioning.
Authors
Musfiqur Rahman
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE.md file for details
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.1 is compatible. netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 is compatible. net452 is compatible. net46 was computed. net461 is compatible. net462 is compatible. net463 was computed. net47 is compatible. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETCoreApp 1.1
- Microsoft.NETCore.App (>= 1.1.2)
-
.NETCoreApp 2.0
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.5.1
- No dependencies.
-
.NETFramework 4.5.2
- No dependencies.
-
.NETFramework 4.6.1
- No dependencies.
-
.NETFramework 4.6.2
- No dependencies.
-
.NETFramework 4.7
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added support for .netcore 1.1, 2.0 and .net framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6.1, 4.6.2 and 4.7