-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAdventOfCode.sln
70 lines (70 loc) · 4.26 KB
/
AdventOfCode.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
62
63
64
65
66
67
68
69
70
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AoC2022", "src\AoC2022\AoC2022.csproj", "{7537A6C2-E040-4CFF-B3CC-68AA8FD5F4BD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AoC2021", "src\AoC2021\AoC2021.csproj", "{A8D59895-F8C7-4691-B7E8-6DE875C3F95D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AoC2020", "src\AoC2020\AoC2020.csproj", "{F4113B94-4D5E-4A89-8E75-A3249F3D64ED}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Runner", "src\Runner\Runner.csproj", "{9F2EB94A-8261-4A0F-8AE8-964170189F7C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C081DF87-2CAB-4B24-B67E-99F8E47CB31E}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{67672399-181F-41A3-A8F4-DA979244D452}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AoC2020.Test", "tests\AoC2020.Test\AoC2020.Test.csproj", "{02B2E952-9091-49C2-90E6-91F80148B32A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Years", "Years", "{4A949EA4-1284-492C-BFF4-9CF011250FD4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "src\Common\Common.csproj", "{0F554AB4-DE7C-41EB-BFC0-C708784FBA9F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7537A6C2-E040-4CFF-B3CC-68AA8FD5F4BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7537A6C2-E040-4CFF-B3CC-68AA8FD5F4BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7537A6C2-E040-4CFF-B3CC-68AA8FD5F4BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7537A6C2-E040-4CFF-B3CC-68AA8FD5F4BD}.Release|Any CPU.Build.0 = Release|Any CPU
{A8D59895-F8C7-4691-B7E8-6DE875C3F95D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A8D59895-F8C7-4691-B7E8-6DE875C3F95D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A8D59895-F8C7-4691-B7E8-6DE875C3F95D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A8D59895-F8C7-4691-B7E8-6DE875C3F95D}.Release|Any CPU.Build.0 = Release|Any CPU
{F4113B94-4D5E-4A89-8E75-A3249F3D64ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F4113B94-4D5E-4A89-8E75-A3249F3D64ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4113B94-4D5E-4A89-8E75-A3249F3D64ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4113B94-4D5E-4A89-8E75-A3249F3D64ED}.Release|Any CPU.Build.0 = Release|Any CPU
{9F2EB94A-8261-4A0F-8AE8-964170189F7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9F2EB94A-8261-4A0F-8AE8-964170189F7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9F2EB94A-8261-4A0F-8AE8-964170189F7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9F2EB94A-8261-4A0F-8AE8-964170189F7C}.Release|Any CPU.Build.0 = Release|Any CPU
{02B2E952-9091-49C2-90E6-91F80148B32A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{02B2E952-9091-49C2-90E6-91F80148B32A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{02B2E952-9091-49C2-90E6-91F80148B32A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{02B2E952-9091-49C2-90E6-91F80148B32A}.Release|Any CPU.Build.0 = Release|Any CPU
{0F554AB4-DE7C-41EB-BFC0-C708784FBA9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0F554AB4-DE7C-41EB-BFC0-C708784FBA9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0F554AB4-DE7C-41EB-BFC0-C708784FBA9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0F554AB4-DE7C-41EB-BFC0-C708784FBA9F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{7537A6C2-E040-4CFF-B3CC-68AA8FD5F4BD} = {4A949EA4-1284-492C-BFF4-9CF011250FD4}
{A8D59895-F8C7-4691-B7E8-6DE875C3F95D} = {4A949EA4-1284-492C-BFF4-9CF011250FD4}
{F4113B94-4D5E-4A89-8E75-A3249F3D64ED} = {4A949EA4-1284-492C-BFF4-9CF011250FD4}
{02B2E952-9091-49C2-90E6-91F80148B32A} = {67672399-181F-41A3-A8F4-DA979244D452}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {66A564B5-22F7-49CA-AA68-4DED9AB14941}
EndGlobalSection
EndGlobal