-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathEventSourcing.sln
71 lines (71 loc) · 4.34 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
62
63
64
65
66
67
68
69
70
71
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6EDCB799-B503-456A-8CBC-E6799DE4FB03}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
build.fsx = build.fsx
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "1 tests", "1 tests", "{194C0A8F-FBA6-43E3-ABF6-36A1E564F145}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "2 libs", "2 libs", "{48599994-23EC-4915-B961-F9290F8AE7C6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{CDBE89FA-44D7-4736-9594-BC6E95F8E8D9}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "EventSourcing", "src\EventSourcing\EventSourcing.fsproj", "{349B9677-C7D2-4734-BA87-3C4890697806}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "EventSourcing.EntityFramework", "src\EventSourcing.EntityFramework\EventSourcing.EntityFramework.fsproj", "{9310A640-9C9F-445D-9FD2-3492AF6C5379}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "ConsoleSample", "src\ConsoleSample\ConsoleSample.fsproj", "{61CAB508-ED6B-418C-8F5D-70F35F37BB4D}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "PlayUno", "src\PlayUno\PlayUno.fsproj", "{1973A9FC-9853-4EC4-8EE3-4E09DB00C0E2}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "EventSourcing.Tests", "src\EventSourcing.Tests\EventSourcing.Tests.fsproj", "{7C405C89-F146-494C-BC83-287ED2C888B6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{3D021B6A-E7A0-4493-9BD9-68F71A36028A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{349B9677-C7D2-4734-BA87-3C4890697806}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{349B9677-C7D2-4734-BA87-3C4890697806}.Debug|Any CPU.Build.0 = Debug|Any CPU
{349B9677-C7D2-4734-BA87-3C4890697806}.Release|Any CPU.ActiveCfg = Release|Any CPU
{349B9677-C7D2-4734-BA87-3C4890697806}.Release|Any CPU.Build.0 = Release|Any CPU
{9310A640-9C9F-445D-9FD2-3492AF6C5379}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9310A640-9C9F-445D-9FD2-3492AF6C5379}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9310A640-9C9F-445D-9FD2-3492AF6C5379}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9310A640-9C9F-445D-9FD2-3492AF6C5379}.Release|Any CPU.Build.0 = Release|Any CPU
{61CAB508-ED6B-418C-8F5D-70F35F37BB4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61CAB508-ED6B-418C-8F5D-70F35F37BB4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61CAB508-ED6B-418C-8F5D-70F35F37BB4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61CAB508-ED6B-418C-8F5D-70F35F37BB4D}.Release|Any CPU.Build.0 = Release|Any CPU
{1973A9FC-9853-4EC4-8EE3-4E09DB00C0E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1973A9FC-9853-4EC4-8EE3-4E09DB00C0E2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1973A9FC-9853-4EC4-8EE3-4E09DB00C0E2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1973A9FC-9853-4EC4-8EE3-4E09DB00C0E2}.Release|Any CPU.Build.0 = Release|Any CPU
{7C405C89-F146-494C-BC83-287ED2C888B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7C405C89-F146-494C-BC83-287ED2C888B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7C405C89-F146-494C-BC83-287ED2C888B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7C405C89-F146-494C-BC83-287ED2C888B6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{349B9677-C7D2-4734-BA87-3C4890697806} = {48599994-23EC-4915-B961-F9290F8AE7C6}
{9310A640-9C9F-445D-9FD2-3492AF6C5379} = {48599994-23EC-4915-B961-F9290F8AE7C6}
{61CAB508-ED6B-418C-8F5D-70F35F37BB4D} = {CDBE89FA-44D7-4736-9594-BC6E95F8E8D9}
{1973A9FC-9853-4EC4-8EE3-4E09DB00C0E2} = {CDBE89FA-44D7-4736-9594-BC6E95F8E8D9}
{7C405C89-F146-494C-BC83-287ED2C888B6} = {194C0A8F-FBA6-43E3-ABF6-36A1E564F145}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = ConsoleSample\ConsoleSample.fsproj
EndGlobalSection
EndGlobal