-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeque.sln
28 lines (28 loc) · 1.68 KB
/
Deque.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
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deque", "src\Deque.csproj", "{E8DDC161-5223-4FCC-98A1-5533728834AC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DequeTests", "tests\Deque.Tests.csproj", "{9D688334-DBB2-4663-8A3A-FD17F83F2EC6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deque.Bench", "bench\Deque.Bench.csproj", "{904AA202-538D-436E-B73E-8BDB892DAD4A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E8DDC161-5223-4FCC-98A1-5533728834AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E8DDC161-5223-4FCC-98A1-5533728834AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E8DDC161-5223-4FCC-98A1-5533728834AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E8DDC161-5223-4FCC-98A1-5533728834AC}.Release|Any CPU.Build.0 = Release|Any CPU
{9D688334-DBB2-4663-8A3A-FD17F83F2EC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D688334-DBB2-4663-8A3A-FD17F83F2EC6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D688334-DBB2-4663-8A3A-FD17F83F2EC6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D688334-DBB2-4663-8A3A-FD17F83F2EC6}.Release|Any CPU.Build.0 = Release|Any CPU
{904AA202-538D-436E-B73E-8BDB892DAD4A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{904AA202-538D-436E-B73E-8BDB892DAD4A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{904AA202-538D-436E-B73E-8BDB892DAD4A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{904AA202-538D-436E-B73E-8BDB892DAD4A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal