Click here to Skip to main content
15,886,519 members
Articles / Programming Languages / C#

Lucene.Net ultra fast search for MVC or WebForms site => made easy!

Rate me:
Please Sign up or sign in to vote.
4.92/5 (138 votes)
22 Aug 2013CPOL17 min read 655.4K   12.1K   331  
Step-by-step tutorial for any developer who wishes to get Lucene.Net search working with their web site or app really quickly!

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LuceneSearch.Mvc", "LuceneSearch.Mvc\LuceneSearch.Mvc.csproj", "{9FB25887-178D-44A8-AD71-7B5887A9A0AC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LuceneSearch.Library", "LuceneSearch.Library\LuceneSearch.Library.csproj", "{DA2F9D29-5731-4CFE-BB9E-C0FD08DCEA3C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LuceneSearch.WebForms", "LuceneSearch.WebForms\LuceneSearch.WebForms.csproj", "{410CE422-837F-4B31-A4DF-7198DE2B5CEA}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{E59E2303-08EC-465A-AAFF-4368485C009C}"
	ProjectSection(SolutionItems) = preProject
		.nuget\NuGet.Config = .nuget\NuGet.Config
		.nuget\NuGet.exe = .nuget\NuGet.exe
		.nuget\NuGet.targets = .nuget\NuGet.targets
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LuceneSearch.Data", "LuceneSearch.Data\LuceneSearch.Data.csproj", "{9A9EA2F1-F0C7-4CBB-B822-58504FDDDE47}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{9FB25887-178D-44A8-AD71-7B5887A9A0AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{9FB25887-178D-44A8-AD71-7B5887A9A0AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{9FB25887-178D-44A8-AD71-7B5887A9A0AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{9FB25887-178D-44A8-AD71-7B5887A9A0AC}.Release|Any CPU.Build.0 = Release|Any CPU
		{DA2F9D29-5731-4CFE-BB9E-C0FD08DCEA3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{DA2F9D29-5731-4CFE-BB9E-C0FD08DCEA3C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{DA2F9D29-5731-4CFE-BB9E-C0FD08DCEA3C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{DA2F9D29-5731-4CFE-BB9E-C0FD08DCEA3C}.Release|Any CPU.Build.0 = Release|Any CPU
		{410CE422-837F-4B31-A4DF-7198DE2B5CEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{410CE422-837F-4B31-A4DF-7198DE2B5CEA}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{410CE422-837F-4B31-A4DF-7198DE2B5CEA}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{410CE422-837F-4B31-A4DF-7198DE2B5CEA}.Release|Any CPU.Build.0 = Release|Any CPU
		{9A9EA2F1-F0C7-4CBB-B822-58504FDDDE47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{9A9EA2F1-F0C7-4CBB-B822-58504FDDDE47}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{9A9EA2F1-F0C7-4CBB-B822-58504FDDDE47}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{9A9EA2F1-F0C7-4CBB-B822-58504FDDDE47}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
Coding is awesome!

Comments and Discussions