Hello Vijay,
The error is :
CS0246: impossible to find the type or name in the space Lucene, probably
A using or a reference to an assembly is
missing
Riga 19: using System.IO;
Riga 20: using System.Text.RegularExpressions;
Riga 21: using Lucene.Net.Analysis.Standard; <--- in red
Riga 22: using Lucene.Net.Documents;
Riga 23: using Lucene.Net.QueryParsers;
Source file top fragment is:
using System;
using System.Data;
using System.IO;
using System.Text.RegularExpressions;
using Lucene.Net.Analysis.Standard;
using Lucene.Net.Documents;
using Lucene.Net.QueryParsers;
using Lucene.Net.Search;
using Lucene.Net.Search.Highlight;
namespace Searcher
{
...
...
Thanks
Valter
-----Original Message-----
From: Dean Harding [mailto:[EMAIL PROTECTED]
Sent: venerdì 5 ottobre 2007 6.00
To: [email protected]
Subject: Re: Lucene.Net & web.config
Vijay Santhanam wrote:
> Also make sure both the ASP.NET website and the Lucene.Net assembly use
the
> same framework version.
As long as the website .NET FW version is >= the Lucene one it shouldn't
matter. That is, they don't need to be *exactly* the same -- you could
run a Lucene.Net compiled for .NET 1.1 on a 2.0 website (but not vice
versa).
Valter Mazzola wrote:
>> I'm using Lucene.Net 2.0.0.4 in an Aspx (2.0), it doesn't find the
> > Lucene .dll , I've put it in the
>> ./Bin folder in respect to the aspx folder.
What is the error (i.e. the exception) that you're getting?
Dean.