Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where has Lucene.Net.Highlight gone?

Tags:

lucene.net

I'm trying to figure out where Lucene.Net.Highlight.dll and the corresponding formatting classes (such as SimpleHTMLFormatter) have gone to.

The last time I downloaded Lucene.Net this assembly was packaged up in the zip file, however this isn't the case with the latest download I could find and I couldn't find any other references to it on this page, or any other page for that matter.

Does anyone know where it is hiding?

like image 787
Justin Avatar asked Feb 10 '11 13:02

Justin


2 Answers

There is no binary releases of the recent Lucene.Net versions.

You will have to check it out from : https://svn.apache.org/repos/asf/lucene/lucene.net/trunk/C#/contrib/Highlighter.Net using SVN and build the DLL yourself.

Update

The contrib package can now be reliably downloaded via Nuget, in binary release.

http://nuget.org/packages/Lucene.Net.Contrib/

like image 172
Jf Beaulac Avatar answered Oct 27 '22 16:10

Jf Beaulac


The Highlighter is now part of the Lucene.Contrib package in NuGet.

like image 28
Bobson Avatar answered Oct 27 '22 17:10

Bobson