-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathEventDriven.ReferenceArchitecture.sln
111 lines (111 loc) · 7.61 KB
/
EventDriven.ReferenceArchitecture.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
103
104
105
106
107
108
109
110
111
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AFFCBFA4-9D64-43AA-AC59-D4CC54BD9C72}"
ProjectSection(SolutionItems) = preProject
DevelopmentGuide.md = DevelopmentGuide.md
ReadMe.md = ReadMe.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{269CD137-4093-4100-B33E-808586D335F6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "reference-architecture", "reference-architecture", "{C4FD0AF1-927A-4860-A634-7CE342807692}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomerService", "reference-architecture\CustomerService\CustomerService.csproj", "{48983715-E6DF-462F-AF3C-769C1122794F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OrderService", "reference-architecture\OrderService\OrderService.csproj", "{16A5B2CB-8C46-4F3E-B7A1-97C47D9F66E7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "json", "json", "{B11B21E0-7B89-4285-990A-D98793310B02}"
ProjectSection(SolutionItems) = preProject
reference-architecture\json\customers.json = reference-architecture\json\customers.json
reference-architecture\json\orders.json = reference-architecture\json\orders.json
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common", "reference-architecture\Common\Common.csproj", "{FC04D111-903D-49FF-84A6-8806C71E2168}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dapr", "dapr", "{F0E48E00-7D72-4614-9C13-90A7B015B06F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "components", "components", "{00BA9501-787E-465C-97D0-F51295D97802}"
ProjectSection(SolutionItems) = preProject
reference-architecture\dapr\components\pubsub.yaml = reference-architecture\dapr\components\pubsub.yaml
reference-architecture\dapr\components\statestore-mongodb.yaml = reference-architecture\dapr\components\statestore-mongodb.yaml
reference-architecture\dapr\components\statestore.yaml = reference-architecture\dapr\components\statestore.yaml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "standby", "standby", "{A045033E-5283-4A6F-87D3-B02194595788}"
ProjectSection(SolutionItems) = preProject
reference-architecture\dapr\standby\pubsub-snssqs.yaml = reference-architecture\dapr\standby\pubsub-snssqs.yaml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventDriven.ReferenceArchitecture.Specs", "test\EventDriven.ReferenceArchitecture.Specs\EventDriven.ReferenceArchitecture.Specs.csproj", "{68B613B3-EB4A-41DB-A61E-1E031C5BFA85}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomerService.Tests", "test\CustomerService.Tests\CustomerService.Tests.csproj", "{C5056BF3-987B-466C-962D-77F8E725F210}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OrderService.Tests", "test\OrderService.Tests\OrderService.Tests.csproj", "{B3A36227-2EB9-4BEC-8FCA-B5DB7A809C06}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReferenceArchitecture.AppHost", "reference-architecture\ReferenceArchitecture.AppHost\ReferenceArchitecture.AppHost.csproj", "{8E145A04-E2D6-4507-86B7-F5E4A3CA8C61}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReferenceArchitecture.ServiceDefaults", "reference-architecture\ReferenceArchitecture.ServiceDefaults\ReferenceArchitecture.ServiceDefaults.csproj", "{CB1E0EE8-0B80-40EB-B838-D1F568A05B29}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{48983715-E6DF-462F-AF3C-769C1122794F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{48983715-E6DF-462F-AF3C-769C1122794F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{48983715-E6DF-462F-AF3C-769C1122794F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{48983715-E6DF-462F-AF3C-769C1122794F}.Release|Any CPU.Build.0 = Release|Any CPU
{16A5B2CB-8C46-4F3E-B7A1-97C47D9F66E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{16A5B2CB-8C46-4F3E-B7A1-97C47D9F66E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{16A5B2CB-8C46-4F3E-B7A1-97C47D9F66E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{16A5B2CB-8C46-4F3E-B7A1-97C47D9F66E7}.Release|Any CPU.Build.0 = Release|Any CPU
{FC04D111-903D-49FF-84A6-8806C71E2168}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FC04D111-903D-49FF-84A6-8806C71E2168}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FC04D111-903D-49FF-84A6-8806C71E2168}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FC04D111-903D-49FF-84A6-8806C71E2168}.Release|Any CPU.Build.0 = Release|Any CPU
{68B613B3-EB4A-41DB-A61E-1E031C5BFA85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{68B613B3-EB4A-41DB-A61E-1E031C5BFA85}.Debug|Any CPU.Build.0 = Debug|Any CPU
{68B613B3-EB4A-41DB-A61E-1E031C5BFA85}.Release|Any CPU.ActiveCfg = Release|Any CPU
{68B613B3-EB4A-41DB-A61E-1E031C5BFA85}.Release|Any CPU.Build.0 = Release|Any CPU
{C5056BF3-987B-466C-962D-77F8E725F210}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C5056BF3-987B-466C-962D-77F8E725F210}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C5056BF3-987B-466C-962D-77F8E725F210}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C5056BF3-987B-466C-962D-77F8E725F210}.Release|Any CPU.Build.0 = Release|Any CPU
{B3A36227-2EB9-4BEC-8FCA-B5DB7A809C06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B3A36227-2EB9-4BEC-8FCA-B5DB7A809C06}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B3A36227-2EB9-4BEC-8FCA-B5DB7A809C06}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3A36227-2EB9-4BEC-8FCA-B5DB7A809C06}.Release|Any CPU.Build.0 = Release|Any CPU
{8E145A04-E2D6-4507-86B7-F5E4A3CA8C61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8E145A04-E2D6-4507-86B7-F5E4A3CA8C61}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8E145A04-E2D6-4507-86B7-F5E4A3CA8C61}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8E145A04-E2D6-4507-86B7-F5E4A3CA8C61}.Release|Any CPU.Build.0 = Release|Any CPU
{CB1E0EE8-0B80-40EB-B838-D1F568A05B29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CB1E0EE8-0B80-40EB-B838-D1F568A05B29}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CB1E0EE8-0B80-40EB-B838-D1F568A05B29}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CB1E0EE8-0B80-40EB-B838-D1F568A05B29}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{48983715-E6DF-462F-AF3C-769C1122794F} = {C4FD0AF1-927A-4860-A634-7CE342807692}
{16A5B2CB-8C46-4F3E-B7A1-97C47D9F66E7} = {C4FD0AF1-927A-4860-A634-7CE342807692}
{B11B21E0-7B89-4285-990A-D98793310B02} = {C4FD0AF1-927A-4860-A634-7CE342807692}
{FC04D111-903D-49FF-84A6-8806C71E2168} = {C4FD0AF1-927A-4860-A634-7CE342807692}
{F0E48E00-7D72-4614-9C13-90A7B015B06F} = {C4FD0AF1-927A-4860-A634-7CE342807692}
{00BA9501-787E-465C-97D0-F51295D97802} = {F0E48E00-7D72-4614-9C13-90A7B015B06F}
{A045033E-5283-4A6F-87D3-B02194595788} = {F0E48E00-7D72-4614-9C13-90A7B015B06F}
{68B613B3-EB4A-41DB-A61E-1E031C5BFA85} = {269CD137-4093-4100-B33E-808586D335F6}
{C5056BF3-987B-466C-962D-77F8E725F210} = {269CD137-4093-4100-B33E-808586D335F6}
{B3A36227-2EB9-4BEC-8FCA-B5DB7A809C06} = {269CD137-4093-4100-B33E-808586D335F6}
{8E145A04-E2D6-4507-86B7-F5E4A3CA8C61} = {C4FD0AF1-927A-4860-A634-7CE342807692}
{CB1E0EE8-0B80-40EB-B838-D1F568A05B29} = {C4FD0AF1-927A-4860-A634-7CE342807692}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {427A0D03-63CA-48AE-AA95-D21800101398}
EndGlobalSection
EndGlobal