-
Notifications
You must be signed in to change notification settings - Fork 20
/
BinaryTree.sln
57 lines (57 loc) · 3.49 KB
/
BinaryTree.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26730.16
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinaryTree", "src\BinaryTree\BinaryTree.csproj", "{A4E2691B-4AE8-45E9-8393-7080EF80AF86}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinaryTreeConsole", "samples\BinaryTreeConsole\BinaryTreeConsole.csproj", "{EFE14B3C-3C84-4B87-A189-50473E800906}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinaryTreeTest", "tests\BinaryTreeTest\BinaryTreeTest.csproj", "{84BC4D3A-CEE1-4301-BA90-ABA36BAC1861}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinaryTreeBenchmarks", "benchmarks\BinaryTreeBenchmarks\BinaryTreeBenchmarks.csproj", "{8FF2404B-53A3-4503-BA80-9948BE7A79BC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{43C53C9B-E93B-4EFD-BD4C-F2BC8D2EA96A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{E58CF340-0B26-4F50-9194-DCDDA0136FCB}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{F523A4C0-6583-41E7-AE67-994A94AC250E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "benchmarks", "benchmarks", "{AEE6033A-3468-4869-A6E8-B97C228F9B69}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A4E2691B-4AE8-45E9-8393-7080EF80AF86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A4E2691B-4AE8-45E9-8393-7080EF80AF86}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A4E2691B-4AE8-45E9-8393-7080EF80AF86}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A4E2691B-4AE8-45E9-8393-7080EF80AF86}.Release|Any CPU.Build.0 = Release|Any CPU
{EFE14B3C-3C84-4B87-A189-50473E800906}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EFE14B3C-3C84-4B87-A189-50473E800906}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EFE14B3C-3C84-4B87-A189-50473E800906}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EFE14B3C-3C84-4B87-A189-50473E800906}.Release|Any CPU.Build.0 = Release|Any CPU
{84BC4D3A-CEE1-4301-BA90-ABA36BAC1861}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{84BC4D3A-CEE1-4301-BA90-ABA36BAC1861}.Debug|Any CPU.Build.0 = Debug|Any CPU
{84BC4D3A-CEE1-4301-BA90-ABA36BAC1861}.Release|Any CPU.ActiveCfg = Release|Any CPU
{84BC4D3A-CEE1-4301-BA90-ABA36BAC1861}.Release|Any CPU.Build.0 = Release|Any CPU
{8FF2404B-53A3-4503-BA80-9948BE7A79BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8FF2404B-53A3-4503-BA80-9948BE7A79BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8FF2404B-53A3-4503-BA80-9948BE7A79BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8FF2404B-53A3-4503-BA80-9948BE7A79BC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{A4E2691B-4AE8-45E9-8393-7080EF80AF86} = {43C53C9B-E93B-4EFD-BD4C-F2BC8D2EA96A}
{EFE14B3C-3C84-4B87-A189-50473E800906} = {E58CF340-0B26-4F50-9194-DCDDA0136FCB}
{84BC4D3A-CEE1-4301-BA90-ABA36BAC1861} = {F523A4C0-6583-41E7-AE67-994A94AC250E}
{8FF2404B-53A3-4503-BA80-9948BE7A79BC} = {AEE6033A-3468-4869-A6E8-B97C228F9B69}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {83666AC3-2532-4CF1-A064-D967DFD7C5C9}
EndGlobalSection
EndGlobal