DetectLanguage
Advanced tools
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
@@ -5,8 +5,7 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <id>DetectLanguage</id> | ||
| <version>1.0.0</version> | ||
| <version>2.0.0</version> | ||
| <authors>Laurynas Butkus</authors> | ||
| <owners>Laurynas Butkus</owners> | ||
| <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
| <license type="expression">MIT</license> | ||
| <licenseUrl>https://licenses.nuget.org/MIT</licenseUrl> | ||
| <readme>README.md</readme> | ||
| <projectUrl>https://github.com/detectlanguage/detectlanguage-dotnet</projectUrl> | ||
@@ -16,9 +15,21 @@ <iconUrl>https://www.nuget.org/profiles/detectlanguage/avatar?imageSize=128</iconUrl> | ||
| <tags>detect identify language text detectlanguage detection identification nlp</tags> | ||
| <repository url="https://github.com/detectlanguage/detectlanguage-dotnet" /> | ||
| <repository type="git" url="https://github.com/detectlanguage/detectlanguage-dotnet" commit="3dc8edd848727262920bfe191ade7c1f7003ba41" /> | ||
| <dependencies> | ||
| <group targetFramework=".NETStandard2.0"> | ||
| <dependency id="Newtonsoft.Json" version="12.0.1" exclude="Build,Analyzers" /> | ||
| <group targetFramework="net5.0"> | ||
| <dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" /> | ||
| </group> | ||
| <group targetFramework="net6.0"> | ||
| <dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" /> | ||
| </group> | ||
| <group targetFramework="net7.0"> | ||
| <dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" /> | ||
| </group> | ||
| <group targetFramework="net8.0"> | ||
| <dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" /> | ||
| </group> | ||
| <group targetFramework="net9.0"> | ||
| <dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" /> | ||
| </group> | ||
| </dependencies> | ||
| </metadata> | ||
| </package> |
+10
-5
@@ -1,5 +0,6 @@ | ||
| Language Detection API Client for .NET | ||
| Detect Language API Client for .NET | ||
| ======== | ||
| [](https://travis-ci.org/detectlanguage/detectlanguage-dotnet) | ||
| [](https://www.nuget.org/packages/DetectLanguage/) | ||
| [](https://github.com/detectlanguage/detectlanguage-dotnet/actions) | ||
@@ -37,2 +38,6 @@ Detects language of the given text. Returns detected language codes and scores. | ||
| ### Upgrading | ||
| When upgrading please check [changelog](CHANGELOG.md) for breaking changes. | ||
| ## Documentation | ||
@@ -58,3 +63,3 @@ | ||
| ```c# | ||
| DetectResult[] results = await client.DetectAsync("Buenos dias señor"); | ||
| DetectResult[] results = await client.DetectAsync("Dolce far niente"); | ||
| ``` | ||
@@ -67,3 +72,3 @@ | ||
| ```c# | ||
| string languageCode = await client.DetectCodeAsync("Buenos dias señor"); | ||
| string languageCode = await client.DetectCodeAsync("Dolce far niente"); | ||
| ``` | ||
@@ -85,3 +90,3 @@ | ||
| ```c# | ||
| UserStatus userStatus = await client.GetUserStatusAsync(); | ||
| AccountStatus accountStatus = await client.GetAccountStatusAsync(); | ||
| ``` | ||
@@ -88,0 +93,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet