-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDBTrie.sln
65 lines (65 loc) · 3.95 KB
/
DBTrie.sln
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30104.148
MinimumVisualStudioVersion = 15.0.26124.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DBTrie", "DBTrie\DBTrie.csproj", "{C39B2593-F2FD-42D6-B18C-2A35F006349F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DBTrie.Tests", "DBTrie.Tests\DBTrie.Tests.csproj", "{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DBTrie.Bench", "DBTrie.Bench\DBTrie.Bench.csproj", "{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Debug|x64.ActiveCfg = Debug|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Debug|x64.Build.0 = Debug|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Debug|x86.ActiveCfg = Debug|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Debug|x86.Build.0 = Debug|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Release|Any CPU.Build.0 = Release|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Release|x64.ActiveCfg = Release|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Release|x64.Build.0 = Release|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Release|x86.ActiveCfg = Release|Any CPU
{C39B2593-F2FD-42D6-B18C-2A35F006349F}.Release|x86.Build.0 = Release|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Debug|x64.ActiveCfg = Debug|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Debug|x64.Build.0 = Debug|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Debug|x86.ActiveCfg = Debug|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Debug|x86.Build.0 = Debug|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Release|Any CPU.Build.0 = Release|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Release|x64.ActiveCfg = Release|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Release|x64.Build.0 = Release|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Release|x86.ActiveCfg = Release|Any CPU
{4C42572F-CE90-49A6-934D-EC6EEB4BEB2C}.Release|x86.Build.0 = Release|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Debug|x64.ActiveCfg = Debug|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Debug|x64.Build.0 = Debug|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Debug|x86.ActiveCfg = Debug|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Debug|x86.Build.0 = Debug|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Release|Any CPU.Build.0 = Release|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Release|x64.ActiveCfg = Release|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Release|x64.Build.0 = Release|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Release|x86.ActiveCfg = Release|Any CPU
{2A9E8147-5B6A-4814-B0C0-ABFEA643441C}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2275EE24-9C55-45B0-A34D-FD0E6ED9E4EA}
EndGlobalSection
EndGlobal