Click here to Skip to main content
15,896,040 members
Articles / Web Development / ASP.NET

Searcharoo 2007 (Medium Trust and Office 2007 indexing)

Rate me:
Please Sign up or sign in to vote.
4.95/5 (11 votes)
28 Apr 2007CPOL10 min read 205.1K   850   42  
Remove Binary Serialization to solve Medium Trust problem; index OpenXML document formats in ASP.NET/C# free search engine
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{864689AB-F471-4A08-AD4C-A125D5B9B3EC}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Searcharoo</RootNamespace>
    <AssemblyName>Searcharoo</AssemblyName>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.configuration" />
    <Reference Include="System.Data" />
    <Reference Include="System.Web" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Common\Catalog.cs" />
    <Compile Include="Common\CatalogBinder.cs" />
    <Compile Include="Common\GoWords\IGoWord.cs" />
    <Compile Include="Common\ResultFile.cs" />
    <Compile Include="Common\StopWords\IStopper.cs" />
    <Compile Include="Common\CatalogWordFile.cs" />
    <Compile Include="Indexer\Documents\PptxDocument.cs" />
    <Compile Include="Indexer\Documents\HtmlAgilityDocument.cs" />
    <Compile Include="Indexer\Documents\RtfDocument.cs" />
    <Compile Include="Indexer\Documents\XhtmlDocument.cs" />
    <Compile Include="Indexer\Documents\XlsxDocument.cs" />
    <Compile Include="Indexer\Documents\DownloadDocument.cs" />
    <Compile Include="Indexer\Documents\XmlDocument.cs" />
    <Compile Include="Indexer\Zip\Crc32.cs" />
    <Compile Include="Indexer\Documents\DocxDocument.cs" />
    <Compile Include="Indexer\Documents\IgnoreDocument.cs" />
    <Compile Include="Indexer\Documents\Document.cs" />
    <Compile Include="Indexer\Documents\DocumentFactory.cs" />
    <Compile Include="Indexer\Documents\FilterDocument.cs" />
    <Compile Include="Indexer\Documents\TextDocument.cs" />
    <Compile Include="Engine\Search.cs" />
    <Compile Include="Common\File.cs" />
    <Compile Include="Common\GoWords\GoWords.cs" />
    <Compile Include="Indexer\Documents\HtmlDocument.cs" />
    <Compile Include="Indexer\ProgressEventArgs.cs" />
    <Compile Include="Common\Kelvin.cs" />
    <Compile Include="Common\Preferences.cs" />
    <Compile Include="Indexer\RobotsTxt.cs" />
    <Compile Include="Indexer\Zip\Zip.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Indexer\Spider.cs" />
    <Compile Include="Common\Stemming\IStemming.cs" />
    <Compile Include="Common\Stemming\NoStemming.cs" />
    <Compile Include="Common\Stemming\PorterStemmer.cs" />
    <Compile Include="Common\StopWords\StopWords.cs" />
    <Compile Include="Common\Word.cs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\EPocalipse.IFilter\EPocalipse.IFilter.csproj">
      <Project>{400462CE-40B3-498F-B95A-B1D2AE679359}</Project>
      <Name>EPocalipse.IFilter</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <None Include="DocumentDiagram.cd" />
    <None Include="SearchEngineDiagram.cd" />
    <None Include="IndexerDiagram.cd" />
    <None Include="AllDiagram.cd" />
    <None Include="Core_CatalogWordFile.cd" />
    <None Include="SpiderDiagram.cd" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>

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
Australia Australia
-- ooo ---
www.conceptdevelopment.net
conceptdev.blogspot.com
www.searcharoo.net
www.recipenow.net
www.racereplay.net
www.silverlightearth.com

Comments and Discussions