You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

DetectLanguage

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

detectlanguage - nuget Package Compare versions

Comparing version
1.0.0
to
2.0.0
lib/net5.0/DetectLanguage.dll

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

+17
-6

@@ -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>

@@ -1,5 +0,6 @@

Language Detection API Client for .NET
Detect Language API Client for .NET
========
[![Build Status](https://secure.travis-ci.org/detectlanguage/detectlanguage-dotnet.svg)](https://travis-ci.org/detectlanguage/detectlanguage-dotnet)
[![NuGet](https://img.shields.io/nuget/v/detectlanguage.svg)](https://www.nuget.org/packages/DetectLanguage/)
[![Build Status](https://github.com/detectlanguage/detectlanguage-dotnet/actions/workflows/main.yml/badge.svg)](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