forked from bashbers/csharp-algorithms-hacktoberfest2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsharp-algorithms.sln
More file actions
53 lines (53 loc) · 3.07 KB
/
csharp-algorithms.sln
File metadata and controls
53 lines (53 loc) · 3.07 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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2019
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp-algorithms", "csharp-algorithms\csharp-algorithms.csproj", "{3511528E-8696-40B8-85AB-97456347A497}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "bubblesort", "bubblesort\bubblesort.csproj", "{C557EF5B-AEFE-407B-8D99-43B9EA625B71}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{59D5FD7E-879A-455C-899C-A56C878CA948}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sort", "sort", "{6A9C8607-AA57-4817-B2C8-B8DD5065AC7C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "greedy", "greedy", "{05BBB622-53C5-4866-869B-B45978502CB5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "search", "search", "{F61757B3-8F9B-4A56-9800-CCD038241D81}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "selectionsort", "selectionsort\selectionsort.csproj", "{A9022928-E9E9-45BE-BFEC-85A1A870A7EB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3511528E-8696-40B8-85AB-97456347A497}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3511528E-8696-40B8-85AB-97456347A497}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3511528E-8696-40B8-85AB-97456347A497}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3511528E-8696-40B8-85AB-97456347A497}.Release|Any CPU.Build.0 = Release|Any CPU
{C557EF5B-AEFE-407B-8D99-43B9EA625B71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C557EF5B-AEFE-407B-8D99-43B9EA625B71}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C557EF5B-AEFE-407B-8D99-43B9EA625B71}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C557EF5B-AEFE-407B-8D99-43B9EA625B71}.Release|Any CPU.Build.0 = Release|Any CPU
{59D5FD7E-879A-455C-899C-A56C878CA948}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{59D5FD7E-879A-455C-899C-A56C878CA948}.Debug|Any CPU.Build.0 = Debug|Any CPU
{59D5FD7E-879A-455C-899C-A56C878CA948}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59D5FD7E-879A-455C-899C-A56C878CA948}.Release|Any CPU.Build.0 = Release|Any CPU
{A9022928-E9E9-45BE-BFEC-85A1A870A7EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A9022928-E9E9-45BE-BFEC-85A1A870A7EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A9022928-E9E9-45BE-BFEC-85A1A870A7EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A9022928-E9E9-45BE-BFEC-85A1A870A7EB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C557EF5B-AEFE-407B-8D99-43B9EA625B71} = {6A9C8607-AA57-4817-B2C8-B8DD5065AC7C}
{A9022928-E9E9-45BE-BFEC-85A1A870A7EB} = {6A9C8607-AA57-4817-B2C8-B8DD5065AC7C}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7F2BFC66-A9D6-4C6D-A15A-984F23C11D29}
EndGlobalSection
EndGlobal