-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimpleDataStructures.sln
61 lines (61 loc) · 3.74 KB
/
SimpleDataStructures.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34330.188
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleDataStructures", "src\SimpleDataStructures\SimpleDataStructures.csproj", "{5754C98E-FB7C-43F2-8AA7-F08FFB4C345C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{174578F0-0F4F-4ECC-9BD4-D59F43C70E61}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C451128F-BAE6-43D3-9A3A-9C627047D11B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleDataStructures.Tests.Functional", "tests\SimpleDataStructures.Tests.Functional\SimpleDataStructures.Tests.Functional.csproj", "{6C171EB8-B890-4BAD-8143-2F9EDE7E2ABD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D7636597-FD84-4254-ADE5-C0B5756AC037}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "benchmarks", "benchmarks", "{D0005A73-BE44-424D-A217-9E674EF471CE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleDataStructures.Benchmarks", "benchmarks\SimpleDataStructures.Benchmarks\SimpleDataStructures.Benchmarks.csproj", "{B5B3E0E7-8A57-443D-A250-49CFD451DF1B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleDataStructures.Alternatives", "src\SimpleDataStructures.Alternatives\SimpleDataStructures.Alternatives.csproj", "{99B7DA00-36DA-440C-B801-DF763A10A2DE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5754C98E-FB7C-43F2-8AA7-F08FFB4C345C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5754C98E-FB7C-43F2-8AA7-F08FFB4C345C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5754C98E-FB7C-43F2-8AA7-F08FFB4C345C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5754C98E-FB7C-43F2-8AA7-F08FFB4C345C}.Release|Any CPU.Build.0 = Release|Any CPU
{6C171EB8-B890-4BAD-8143-2F9EDE7E2ABD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6C171EB8-B890-4BAD-8143-2F9EDE7E2ABD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6C171EB8-B890-4BAD-8143-2F9EDE7E2ABD}.Release|Any CPU.ActiveCfg = Debug|Any CPU
{6C171EB8-B890-4BAD-8143-2F9EDE7E2ABD}.Release|Any CPU.Build.0 = Debug|Any CPU
{B5B3E0E7-8A57-443D-A250-49CFD451DF1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B5B3E0E7-8A57-443D-A250-49CFD451DF1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B5B3E0E7-8A57-443D-A250-49CFD451DF1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B5B3E0E7-8A57-443D-A250-49CFD451DF1B}.Release|Any CPU.Build.0 = Release|Any CPU
{99B7DA00-36DA-440C-B801-DF763A10A2DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{99B7DA00-36DA-440C-B801-DF763A10A2DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{99B7DA00-36DA-440C-B801-DF763A10A2DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{99B7DA00-36DA-440C-B801-DF763A10A2DE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{5754C98E-FB7C-43F2-8AA7-F08FFB4C345C} = {C451128F-BAE6-43D3-9A3A-9C627047D11B}
{6C171EB8-B890-4BAD-8143-2F9EDE7E2ABD} = {174578F0-0F4F-4ECC-9BD4-D59F43C70E61}
{B5B3E0E7-8A57-443D-A250-49CFD451DF1B} = {D0005A73-BE44-424D-A217-9E674EF471CE}
{99B7DA00-36DA-440C-B801-DF763A10A2DE} = {C451128F-BAE6-43D3-9A3A-9C627047D11B}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C89E6D61-900C-4CBC-993E-F63DCFB645EB}
EndGlobalSection
EndGlobal