Skip to content

Commit

Permalink
Update to version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hklemp committed Dec 2, 2018
1 parent 1e964be commit 8b160cf
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
4 changes: 4 additions & 0 deletions dotnet-stop-words.sln
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ Global
{59F3DA0A-0E7F-4D71-B8E9-F462353147EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59F3DA0A-0E7F-4D71-B8E9-F462353147EC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
Policies = $0
$0.VersionControlPolicy = $1
EndGlobalSection
EndGlobal
17 changes: 12 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,42 +6,49 @@ Get list of common stop words in various languages in dotnet. Based on the list

## Available languages
* Arabic
* Bulgarian
* Catalan
* Czech
* Danish
* Dutch
* English
* Finnish
* French
* German
* Hindi
* Hungarian
* Indonesian
* Italian
* Norwegian
* Polish
* Portuguese
* Romanian
* Russian
* Slovak
* Spanish
* Swedish
* Turkish
* Ukrainian

* Vietnamese

## Installation
``` bash
Install-Package dotnet-stop-words -Version 1.0.0
Install-Package dotnet-stop-words -Version 1.0.2
```
or
``` bash
dotnet add package dotnet-stop-words --version 1.0.0
dotnet add package dotnet-stop-words --version 1.0.2
```
or
``` bash
paket add dotnet-stop-words --version 1.0.0
paket add dotnet-stop-words --version 1.0.2
```

## Usage
```csharp
var testString = "Hello this is a test";
var newString = s.RemoveStopWords("en");
// newstring is now Hello test
// newstring is now Hello
```

```csharp
Expand Down
4 changes: 3 additions & 1 deletion src/src.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
<Title>dotnet-stop-words</Title>
<Description>Get list of common stop words in various languages in dotnet</Description>
<PackageId>dotnet-stop-words</PackageId>
<Version>1.0.1.0</Version>
<Version>1.0.2.0</Version>
<PackageReleaseNotes>Add polish
Update english</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 8b160cf

Please sign in to comment.