Skip to content

Commit

Permalink
added index project and tests, updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Junghanns committed Sep 8, 2011
1 parent 8073d23 commit 17011bc
Show file tree
Hide file tree
Showing 78 changed files with 3,300 additions and 0 deletions.
99 changes: 99 additions & 0 deletions BinaryTreeIndex.Tests/BinaryTreeIndex.Tests.csproj
@@ -0,0 +1,99 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{BB2CA489-61D9-4033-B220-D55850BF5F9B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BinaryTreeIndex.Tests</RootNamespace>
<AssemblyName>BinaryTreeIndex.Tests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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="nunit.framework">
<HintPath>..\..\NUnit\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BinaryTreeIndexTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\CommunityEdition\GraphDB\IGraphDB\IGraphDB.csproj">
<Project>{5A691EE2-96EE-4F5F-858E-6A17088CE7A1}</Project>
<Name>IGraphDB</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\GraphDB\Implementations\SonesGraphDB\SonesGraphDB.csproj">
<Project>{1FC72801-4046-4CC7-BF83-8082FFD593BC}</Project>
<Name>SonesGraphDB</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\GraphFS\Implementations\InMemoryNonRevisioned\InMemoryNonRevisioned.csproj">
<Project>{AB7C27CC-534F-472E-BA56-A1287973B7E2}</Project>
<Name>InMemoryNonRevisioned</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\Library\Internal\Commons\Commons.csproj">
<Project>{581F49A5-9768-4CB3-AF92-3A3FC2B1F63B}</Project>
<Name>Commons</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\Library\Internal\ErrorHandling\ErrorHandling.csproj">
<Project>{EA1F7F6C-C8C9-4529-998D-B86701FFA1DE}</Project>
<Name>ErrorHandling</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\Library\Internal\IPluginable\IPluginable.csproj">
<Project>{C6DDFD34-176E-48AC-998F-854F98CD28BB}</Project>
<Name>IPluginable</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\Library\Internal\PropertyHyperGraph\PropertyHyperGraph.csproj">
<Project>{A1BD782F-F3C4-4820-8B00-FDBDAADAE37D}</Project>
<Name>PropertyHyperGraph</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\Plugins\Index\Indices\SonesIndices\SonesIndices.csproj">
<Project>{FCF3C622-5CF6-4C2A-B024-4046D6E4941C}</Project>
<Name>SonesIndices</Name>
</ProjectReference>
<ProjectReference Include="..\..\CommunityEdition\Plugins\Index\ISonesIndex\ISonesIndex.csproj">
<Project>{823E8AF4-CF92-4E74-8ABD-38693279EB1E}</Project>
<Name>ISonesIndex</Name>
</ProjectReference>
<ProjectReference Include="..\BinaryTreeIndex\BinaryTreeIndex.csproj">
<Project>{F49E824F-7917-44A2-A4B4-7167F61C2836}</Project>
<Name>BinaryTreeIndex</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\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>

0 comments on commit 17011bc

Please sign in to comment.