I simply want to install Unicode.NET library, what do i do wrong?
(I'm using VS Community 2017, V:15.3.4)
Asked
Active
Viewed 33 times
-2

tomersss2
- 135
- 12
-
1`Assert` does not come from that library, but from a unit testing library... – CodeCaster Sep 14 '17 at 14:07
-
So what just Unicode.NET library gives you? (all i need is the thing that turns special characters to their simple English form) – tomersss2 Sep 14 '17 at 14:12
-
Wrong question. What are you trying to do? Why do you think you need that call to `Assert`? – CodeCaster Sep 14 '17 at 14:13
-
You want to use a library and you don't even know why? Walk away from the IDE. – Sep 14 '17 at 14:13
2 Answers
2
This library is an emoji and text-processing library for .NET. They are using Assert from xUnit library. Take a look at their source code from github. inside the tests folder.

Amit Kumar Singh
- 4,393
- 2
- 9
- 22
1
You need to install the NUnit-test framework as well. The red underlined code is a hint that the compiler cannot resolve the assert-function used in your code, which is part of the NUnit-framework. Just look for enter link description here
So get the package, add the reference to your project and don't forget the using directive:
using NUnit.Framework;

KimKulling
- 2,654
- 1
- 15
- 26
-
You definitely don't _need_ to install that, unless you want to do unit testing. It's not a dependency for using this library. – CodeCaster Sep 14 '17 at 14:12