-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventSourcing.sln
61 lines (60 loc) · 3.74 KB
/
EventSourcing.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{4782CE73-A0D6-4934-AEEB-64E714C06F84}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NiallMaloney.EventSourcing", "src\NiallMaloney.EventSourcing\NiallMaloney.EventSourcing.csproj", "{C459D1B9-C387-47FC-8132-89C5BC6B3A6B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "misc", "misc", "{D254004C-84A3-4B3E-84CD-50FD3EAB50DF}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
LICENSE = LICENSE
README.md = README.md
eventstore-init.sh = eventstore-init.sh
.github\workflows\build.yml = .github\workflows\build.yml
.github\workflows\publish.yml = .github\workflows\publish.yml
Directory.Packages.props = Directory.Packages.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{E89C70FF-4672-42C7-B5A2-A26AC77601AE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NiallMaloney.EventSourcing.UnitTests", "test\NiallMaloney.EventSourcing.UnitTests\NiallMaloney.EventSourcing.UnitTests.csproj", "{BB782D19-640B-49D9-9758-707EFF920F19}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NiallMaloney.EventSourcing.IntegrationTests", "test\NiallMaloney.EventSourcing.IntegrationTests\NiallMaloney.EventSourcing.IntegrationTests.csproj", "{EAB8F7FA-10D9-406E-9BC8-6D2CC3D65919}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NiallMaloney.EventSourcing.Shared", "test\NiallMaloney.EventSourcing.Shared\NiallMaloney.EventSourcing.Shared.csproj", "{8D97FE2C-EB27-4198-ABBC-F532AF059DD9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C459D1B9-C387-47FC-8132-89C5BC6B3A6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C459D1B9-C387-47FC-8132-89C5BC6B3A6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C459D1B9-C387-47FC-8132-89C5BC6B3A6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C459D1B9-C387-47FC-8132-89C5BC6B3A6B}.Release|Any CPU.Build.0 = Release|Any CPU
{BB782D19-640B-49D9-9758-707EFF920F19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB782D19-640B-49D9-9758-707EFF920F19}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB782D19-640B-49D9-9758-707EFF920F19}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB782D19-640B-49D9-9758-707EFF920F19}.Release|Any CPU.Build.0 = Release|Any CPU
{EAB8F7FA-10D9-406E-9BC8-6D2CC3D65919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EAB8F7FA-10D9-406E-9BC8-6D2CC3D65919}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EAB8F7FA-10D9-406E-9BC8-6D2CC3D65919}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EAB8F7FA-10D9-406E-9BC8-6D2CC3D65919}.Release|Any CPU.Build.0 = Release|Any CPU
{8D97FE2C-EB27-4198-ABBC-F532AF059DD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8D97FE2C-EB27-4198-ABBC-F532AF059DD9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8D97FE2C-EB27-4198-ABBC-F532AF059DD9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8D97FE2C-EB27-4198-ABBC-F532AF059DD9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C459D1B9-C387-47FC-8132-89C5BC6B3A6B} = {4782CE73-A0D6-4934-AEEB-64E714C06F84}
{BB782D19-640B-49D9-9758-707EFF920F19} = {E89C70FF-4672-42C7-B5A2-A26AC77601AE}
{EAB8F7FA-10D9-406E-9BC8-6D2CC3D65919} = {E89C70FF-4672-42C7-B5A2-A26AC77601AE}
{8D97FE2C-EB27-4198-ABBC-F532AF059DD9} = {E89C70FF-4672-42C7-B5A2-A26AC77601AE}
EndGlobalSection
EndGlobal