Im using Lucene.net version 4.8beta, and when trying to use an Analyzer it doesnt recognize StandardTokenizer. I am already using Lucene.Net.Analysis. I am using Visual Studio
I have already tried using NuGet package manager to uninstall, and then reinstall the beta. I have an old project that uses Lucene.net 3.03 that uses some of the standard Tokenizers such as WhitespaceTokenizer and LowerCaseFilter. All the guides in the 4.8 Documentation mention using StandardTokenizer as well.
TokeStream result = new WhiteSpaceTokenizer(reader);
result = new LowerCaseFilter(result);
I expect the function to be useable, but this just tells me that it doesnt recognize it.