My favorites
▼
|
Sign in
csharptest-net
CSharpTest.Net's Code Library
Project Home
Downloads
Issues
Source
Repository:
default
wiki
Checkout
Browse
Changes
Clones
Source path:
hg
/
src
/
BPlusTree
/
BPlusTree.csproj
Branch:
default
Tag:
<none>
v1.10.1024.336
v1.10.1124.358
v1.10.420.164
v1.10.607.213
v1.10.913.269
v1.11.426.305
v1.11.924.348
v1.9.1004.144
4e0bd400d42a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{FBD5EDD1-445C-46D1-A0B2-4B68CB51EADB}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CSharpTest.Net</RootNamespace>
<AssemblyName>CSharpTest.Net.BPlusTree</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<OutputPath>..\bin\</OutputPath>
<IntermediateOutputPath>$(OutputPath)obj\$(AssemblyName)\</IntermediateOutputPath>
<DocumentationFile Condition="'$(OutputType)' == 'Library'">$(OutputPath)$(AssemblyName).xml</DocumentationFile>
<DebugSymbols>True</DebugSymbols>
<DebugType>pdbonly</DebugType>
<DefineConstants>DEBUG;NET35;TRACE</DefineConstants>
<ErrorReport>none</ErrorReport>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<WarningLevel>4</WarningLevel>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\keys\csharptest.net.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>false</Optimize>
<DefineConstants>DEBUG;NET35;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Reference Include="CSharpTest.Net.Library">
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Collections\BPlusTree.Options.cs" />
<Compile Include="Collections\BPlusTree.cs" />
<Compile Include="Collections\BPlusTree.Debug.cs" />
<Compile Include="Collections\BPlusTree.Recovery.cs" />
<Compile Include="Collections\NodeCache.Base.cs" />
<Compile Include="Collections\Element.cs" />
<Compile Include="Collections\Enumerator.cs" />
<Compile Include="Collections\NodeCache.Full.cs" />
<Compile Include="Collections\NodeCache.None.cs" />
<Compile Include="Collections\NodeTransaction.cs" />
<Compile Include="Exceptions.cs" />
<Compile Include="Collections\Interfaces.cs" />
<Compile Include="Collections\Node.cs" />
<Compile Include="Collections\Node.Delete.cs" />
<Compile Include="Collections\Node.Insert.cs" />
<Compile Include="Collections\Node.Search.cs" />
<Compile Include="Collections\Node.Serialize.cs" />
<Compile Include="Collections\NodeCache.Normal.cs" />
<Compile Include="Collections\NodeHandle.cs" />
<Compile Include="Collections\NodePin.cs" />
<Compile Include="Storage\Storage.Disk.cs" />
<Compile Include="Storage\Storage.Memory.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="..\..\keys\csharptest.net.snk">
<Link>Properties\csharptest.net.snk</Link>
</None>
<EmbeddedResource Include="Resources.resx">
<Generator>CmdTool</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\LICENSE-2.0.txt">
<Link>LICENSE-2.0.txt</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Show details
Hide details
Change log
59104bd26e63
by rogerk on Apr 26, 2011
Diff
Release version 1.11.426.305
Go to:
/.hgignore
...sTree.Test/BPlusTree.Test.csproj
...ree/BPlusTree.Test/BasicTests.cs
...ree.Test/SampleCustomTypeTest.cs
...ee.Test/SampleTypes/DataValue.cs
...mpleTypes/DataValueSerializer.cs
...Tree.Test/SampleTypes/KeyInfo.cs
...t/SampleTypes/KeyInfoComparer.cs
...SampleTypes/KeyInfoSerializer.cs
.../BPlusTree.Test/SequenceTests.cs
...ree.Test/TestBPlusTreeOptions.cs
...BPlusTree.Test/TestCollection.cs
...usTree.Test/TestCustomStorage.cs
...BPlusTree.Test/TestDictionary.cs
...sTree.Test/TestFileSerialized.cs
...ree.Test/TestMemorySerialized.cs
...ree.Test/TestSimpleDictionary.cs
...usTree.Test/ThreadedBTreeTest.cs
/src/BPlusTree/BPlusTree.csproj
.../Collections/BPlusTransaction.cs
...tions/BPlusTransactionFactory.cs
...e/Collections/BPlusTree.Debug.cs
...Collections/BPlusTree.Options.cs
...ollections/BPlusTree.Recovery.cs
...lusTree/Collections/BPlusTree.cs
...BPlusTree/Collections/Element.cs
...usTree/Collections/Enumerator.cs
...usTree/Collections/Interfaces.cs
...sTree/Collections/Node.Delete.cs
...sTree/Collections/Node.Insert.cs
...sTree/Collections/Node.Search.cs
...ee/Collections/Node.Serialize.cs
/src/BPlusTree/Collections/Node.cs
...ee/Collections/NodeCache.Base.cs
...ee/Collections/NodeCache.Full.cs
...ee/Collections/NodeCache.None.cs
.../Collections/NodeCache.Normal.cs
...usTree/Collections/NodeHandle.cs
...BPlusTree/Collections/NodePin.cs
...e/Collections/NodeTransaction.cs
/src/BPlusTree/Exceptions.cs
...sTree/Properties/AssemblyInfo.cs
.../BPlusTree/Resources.Designer.cs
/src/BPlusTree/Resources.resx
...PlusTree/Storage/Storage.Disk.cs
...usTree/Storage/Storage.Memory.cs
/src/CSBuild.exe
/src/CSBuild.xsd
/src/CmdTool.config
...g/UserSettingsSection.Upgrade.cs
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 3977 bytes, 85 lines
View raw file
Powered by
Google Project Hosting