gmamaladze / trienet

.NET Implementations of Trie Data Structures for Substring Search, Auto-completion and Intelli-sense. Includes: patricia trie, suffix trie and a trie implementation using Ukkonen's algorithm.
MIT License
425 stars 67 forks source link

.NET Standard 2.0 support #4

Closed jussik closed 7 years ago

jussik commented 7 years ago

I'm using this library in a .NET Core project so I added .NET Standard 2.0 support. I set it to target both Standard 2.0 and Framework 4.6.1 so (in theory) it shouldn't cause problems for existing users. I updated the version number to 1.0.4 because the new .csproj format doesn't seem to support the 1.0.3.* syntax.

.NET Standard 2.0 is the earliest version to support string.Intern so I couldn't use any 1.x version.

Nice library by the way 😀

jussik commented 7 years ago

Looks like the CI build doesn't like the VS2017 .csproj format.