Skip to content

Commit 3d193b1

Browse files
authored
added installation section
1 parent bbdb668 commit 3d193b1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ It often happens that you have text data in Unicode, but you need to represent i
1111
It provides string or char extension method Unidecode() that returns transliterated string. It supports huge amount of languages.
1212
And it's very easy to add your language if it's not supported already!
1313

14+
# Installation
15+
Unicode.NET published as NuGet package: https://www.nuget.org/packages/Unidecode.NET/
16+
To install Unidecode.NET, run the following command in the [Package Manager Console](https://docs.nuget.org/consume/package-manager-console)
17+
18+
```bash Install-Package Unidecode.NET```
19+
1420
#Example code
1521

1622
Take a look at the list of assertions:
@@ -26,4 +32,4 @@ Assert.AreEqual("a", "α".Unidecode());
2632
Assert.AreEqual("a", "а".Unidecode());
2733
Assert.AreEqual("chateau", "ch\u00e2teau".Unidecode());
2834
Assert.AreEqual("vinedos", "vi\u00f1edos".Unidecode());
29-
```
35+
```

0 commit comments

Comments
 (0)