-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlgorithmsAndDataStructures.sln
More file actions
60 lines (60 loc) · 3.72 KB
/
AlgorithmsAndDataStructures.sln
File metadata and controls
60 lines (60 loc) · 3.72 KB
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33110.190
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AlgorithmsAndDataStructures.ConsoleApp", "src\AlgorithmsAndDataStructures.Console\AlgorithmsAndDataStructures.ConsoleApp.csproj", "{2BA880CE-B38F-4D6D-93D8-689472572F43}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{ADFA1B3A-0AAA-4FB5-9802-8670B9EAAA18}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinarySearch", "src\BinarySearch\BinarySearch.csproj", "{64472A4F-EA16-48A1-B683-D377CD304C68}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "1 - Presentation", "1 - Presentation", "{868B7DF7-571E-41F9-AB72-7B5193A52EBD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "2 - Projects", "2 - Projects", "{EE8AB328-4A24-4D9F-ADFB-DF93003397C8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3 - Common", "3 - Common", "{0095A08D-1E44-4DD6-B038-8152D1FC5043}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common", "src\Common\Common.csproj", "{9F9B6118-51D8-4B68-A6A8-1D1555D2D96C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SelectionSort", "src\SelectionSort\SelectionSort.csproj", "{D2746E11-3550-4E93-8434-3050102E1045}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2BA880CE-B38F-4D6D-93D8-689472572F43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2BA880CE-B38F-4D6D-93D8-689472572F43}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2BA880CE-B38F-4D6D-93D8-689472572F43}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2BA880CE-B38F-4D6D-93D8-689472572F43}.Release|Any CPU.Build.0 = Release|Any CPU
{64472A4F-EA16-48A1-B683-D377CD304C68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{64472A4F-EA16-48A1-B683-D377CD304C68}.Debug|Any CPU.Build.0 = Debug|Any CPU
{64472A4F-EA16-48A1-B683-D377CD304C68}.Release|Any CPU.ActiveCfg = Release|Any CPU
{64472A4F-EA16-48A1-B683-D377CD304C68}.Release|Any CPU.Build.0 = Release|Any CPU
{9F9B6118-51D8-4B68-A6A8-1D1555D2D96C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9F9B6118-51D8-4B68-A6A8-1D1555D2D96C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9F9B6118-51D8-4B68-A6A8-1D1555D2D96C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9F9B6118-51D8-4B68-A6A8-1D1555D2D96C}.Release|Any CPU.Build.0 = Release|Any CPU
{D2746E11-3550-4E93-8434-3050102E1045}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D2746E11-3550-4E93-8434-3050102E1045}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2746E11-3550-4E93-8434-3050102E1045}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2746E11-3550-4E93-8434-3050102E1045}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{2BA880CE-B38F-4D6D-93D8-689472572F43} = {868B7DF7-571E-41F9-AB72-7B5193A52EBD}
{64472A4F-EA16-48A1-B683-D377CD304C68} = {EE8AB328-4A24-4D9F-ADFB-DF93003397C8}
{868B7DF7-571E-41F9-AB72-7B5193A52EBD} = {ADFA1B3A-0AAA-4FB5-9802-8670B9EAAA18}
{EE8AB328-4A24-4D9F-ADFB-DF93003397C8} = {ADFA1B3A-0AAA-4FB5-9802-8670B9EAAA18}
{0095A08D-1E44-4DD6-B038-8152D1FC5043} = {ADFA1B3A-0AAA-4FB5-9802-8670B9EAAA18}
{9F9B6118-51D8-4B68-A6A8-1D1555D2D96C} = {0095A08D-1E44-4DD6-B038-8152D1FC5043}
{D2746E11-3550-4E93-8434-3050102E1045} = {EE8AB328-4A24-4D9F-ADFB-DF93003397C8}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9BF74899-9DC9-49BB-BA28-ECEB560DE1AD}
EndGlobalSection
EndGlobal