-
Notifications
You must be signed in to change notification settings - Fork 3
/
logic-engine.sln
58 lines (58 loc) · 3.03 KB
/
logic-engine.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31912.275
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E6F54007-2B42-4E67-B978-FCA137A4457B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A17FDBBD-8F5E-4D3D-84A2-3A00B0EFAF27}"
ProjectSection(SolutionItems) = preProject
.dockerignore = .dockerignore
.gitattributes = .gitattributes
.gitignore = .gitignore
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{74BBBFA3-9BD5-416D-A186-A03E8165B235}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{90C67B76-A962-49C3-94CE-582BCD0EAE76}"
ProjectSection(SolutionItems) = preProject
.github\workflows\main.yaml = .github\workflows\main.yaml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{15330B41-7318-4B6F-8FCB-9DB5EA345857}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogicEngine", "src\LogicEngine\LogicEngine.csproj", "{B29F4138-F4D6-4488-BD55-BB0CC6D9D102}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogicEngine.Unit.Tests", "tests\LogicEngine.Unit.Tests\LogicEngine.Unit.Tests.csproj", "{CDB883E6-1078-439C-A1A5-637DB73642B7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "benchmarks", "benchmarks", "{6EFCE1B6-BC92-4F6D-B650-6B736DA0D145}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B29F4138-F4D6-4488-BD55-BB0CC6D9D102}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B29F4138-F4D6-4488-BD55-BB0CC6D9D102}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B29F4138-F4D6-4488-BD55-BB0CC6D9D102}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B29F4138-F4D6-4488-BD55-BB0CC6D9D102}.Release|Any CPU.Build.0 = Release|Any CPU
{CDB883E6-1078-439C-A1A5-637DB73642B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CDB883E6-1078-439C-A1A5-637DB73642B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CDB883E6-1078-439C-A1A5-637DB73642B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CDB883E6-1078-439C-A1A5-637DB73642B7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{74BBBFA3-9BD5-416D-A186-A03E8165B235} = {A17FDBBD-8F5E-4D3D-84A2-3A00B0EFAF27}
{90C67B76-A962-49C3-94CE-582BCD0EAE76} = {74BBBFA3-9BD5-416D-A186-A03E8165B235}
{B29F4138-F4D6-4488-BD55-BB0CC6D9D102} = {15330B41-7318-4B6F-8FCB-9DB5EA345857}
{CDB883E6-1078-439C-A1A5-637DB73642B7} = {E6F54007-2B42-4E67-B978-FCA137A4457B}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7B7AFE7E-1524-4803-B7CB-6B130E84A860}
EndGlobalSection
EndGlobal