-2

I simply want to install Unicode.NET library, what do i do wrong? (I'm using VS Community 2017, V:15.3.4) enter image description here

tomersss2
  • 135
  • 12

2 Answers2

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.

Read more here

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