-
Notifications
You must be signed in to change notification settings - Fork 1
/
CaptureTheFlag.sln
102 lines (102 loc) · 6.38 KB
/
CaptureTheFlag.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32328.378
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CTF.Application", "src\Application\CTF.Application.csproj", "{451E4CB5-45B7-4B55-BCA5-11AD05307328}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CTF.Host", "src\Host\CTF.Host.csproj", "{08C99C11-F517-4179-86AE-9B74F3AA8E75}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Persistence", "Persistence", "{5288534A-0560-492B-AFD0-972CBBF1FB73}"
ProjectSection(SolutionItems) = preProject
src\Persistence\Directory.Build.props = src\Persistence\Directory.Build.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Persistence.InMemory", "src\Persistence\Persistence.InMemory\Persistence.InMemory.csproj", "{066AB41F-AF80-4B7C-9A4D-119920B11B70}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Persistence.SQLite", "src\Persistence\Persistence.SQLite\Persistence.SQLite.csproj", "{D2267B87-77AD-4932-96DC-30FD60A9F332}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Persistence.MariaDB", "src\Persistence\Persistence.MariaDB\Persistence.MariaDB.csproj", "{8635E780-2A9B-4DF4-BAFF-A9A306C07F1C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{5B2B6002-D4CD-4D3E-ABA2-9F2B3B9ADB4D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CTF.Application.Tests", "tests\Application.Tests\CTF.Application.Tests.csproj", "{0E7EC0C1-817D-42B4-9A40-833D295B15C8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Persistence.Tests", "tests\Persistence.Tests\Persistence.Tests.csproj", "{C62BE6B9-7E73-4347-8D92-53A7F68CA688}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3B682FEF-739A-498C-84E9-C83A992AD968}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.env = .env
.env.example = .env.example
tests\Persistence.Tests\.env.test = tests\Persistence.Tests\.env.test
tests\Persistence.Tests\.env.test.example = tests\Persistence.Tests\.env.test.example
src\Host\CopySQLiteLibrary.targets = src\Host\CopySQLiteLibrary.targets
Directory.Build.props = Directory.Build.props
Directory.Packages.props = Directory.Packages.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{D718FC07-9D83-4987-8649-1FD1DC7E5213}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "mariadb", "mariadb", "{3FAADC70-9EFB-4778-B290-72F90205C636}"
ProjectSection(SolutionItems) = preProject
scripts\mariadb\gamemode.sql = scripts\mariadb\gamemode.sql
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sqlite", "sqlite", "{00CD9221-B71C-4A59-935A-D876050403FB}"
ProjectSection(SolutionItems) = preProject
scripts\sqlite\gamemode.sql = scripts\sqlite\gamemode.sql
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{451E4CB5-45B7-4B55-BCA5-11AD05307328}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{451E4CB5-45B7-4B55-BCA5-11AD05307328}.Debug|Any CPU.Build.0 = Debug|Any CPU
{451E4CB5-45B7-4B55-BCA5-11AD05307328}.Release|Any CPU.ActiveCfg = Release|Any CPU
{451E4CB5-45B7-4B55-BCA5-11AD05307328}.Release|Any CPU.Build.0 = Release|Any CPU
{08C99C11-F517-4179-86AE-9B74F3AA8E75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{08C99C11-F517-4179-86AE-9B74F3AA8E75}.Debug|Any CPU.Build.0 = Debug|Any CPU
{08C99C11-F517-4179-86AE-9B74F3AA8E75}.Release|Any CPU.ActiveCfg = Release|Any CPU
{08C99C11-F517-4179-86AE-9B74F3AA8E75}.Release|Any CPU.Build.0 = Release|Any CPU
{066AB41F-AF80-4B7C-9A4D-119920B11B70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{066AB41F-AF80-4B7C-9A4D-119920B11B70}.Debug|Any CPU.Build.0 = Debug|Any CPU
{066AB41F-AF80-4B7C-9A4D-119920B11B70}.Release|Any CPU.ActiveCfg = Release|Any CPU
{066AB41F-AF80-4B7C-9A4D-119920B11B70}.Release|Any CPU.Build.0 = Release|Any CPU
{D2267B87-77AD-4932-96DC-30FD60A9F332}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D2267B87-77AD-4932-96DC-30FD60A9F332}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2267B87-77AD-4932-96DC-30FD60A9F332}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2267B87-77AD-4932-96DC-30FD60A9F332}.Release|Any CPU.Build.0 = Release|Any CPU
{8635E780-2A9B-4DF4-BAFF-A9A306C07F1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8635E780-2A9B-4DF4-BAFF-A9A306C07F1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8635E780-2A9B-4DF4-BAFF-A9A306C07F1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8635E780-2A9B-4DF4-BAFF-A9A306C07F1C}.Release|Any CPU.Build.0 = Release|Any CPU
{0E7EC0C1-817D-42B4-9A40-833D295B15C8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E7EC0C1-817D-42B4-9A40-833D295B15C8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E7EC0C1-817D-42B4-9A40-833D295B15C8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E7EC0C1-817D-42B4-9A40-833D295B15C8}.Release|Any CPU.Build.0 = Release|Any CPU
{C62BE6B9-7E73-4347-8D92-53A7F68CA688}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C62BE6B9-7E73-4347-8D92-53A7F68CA688}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C62BE6B9-7E73-4347-8D92-53A7F68CA688}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C62BE6B9-7E73-4347-8D92-53A7F68CA688}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{066AB41F-AF80-4B7C-9A4D-119920B11B70} = {5288534A-0560-492B-AFD0-972CBBF1FB73}
{D2267B87-77AD-4932-96DC-30FD60A9F332} = {5288534A-0560-492B-AFD0-972CBBF1FB73}
{8635E780-2A9B-4DF4-BAFF-A9A306C07F1C} = {5288534A-0560-492B-AFD0-972CBBF1FB73}
{0E7EC0C1-817D-42B4-9A40-833D295B15C8} = {5B2B6002-D4CD-4D3E-ABA2-9F2B3B9ADB4D}
{C62BE6B9-7E73-4347-8D92-53A7F68CA688} = {5B2B6002-D4CD-4D3E-ABA2-9F2B3B9ADB4D}
{D718FC07-9D83-4987-8649-1FD1DC7E5213} = {3B682FEF-739A-498C-84E9-C83A992AD968}
{3FAADC70-9EFB-4778-B290-72F90205C636} = {D718FC07-9D83-4987-8649-1FD1DC7E5213}
{00CD9221-B71C-4A59-935A-D876050403FB} = {D718FC07-9D83-4987-8649-1FD1DC7E5213}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {363EB35D-39EA-4E76-87BD-7A8C98D7DB38}
EndGlobalSection
EndGlobal