-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSaga_Design_Pattern.sln
More file actions
43 lines (43 loc) · 2.54 KB
/
Saga_Design_Pattern.sln
File metadata and controls
43 lines (43 loc) · 2.54 KB
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35312.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OrderService", "OrderService\OrderService.csproj", "{11A9D256-3AF2-4CD0-8FE2-17C48F1D3744}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InventoryService", "InventoryService\InventoryService.csproj", "{EEB11AD9-BECF-4B63-B625-48E95A582351}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PaymentService", "PaymentService\PaymentService.csproj", "{0DA5F63F-007B-4FDC-8F18-8640F708A985}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SagaOrchestrator", "SagaOrchestrator\SagaOrchestrator.csproj", "{0A325D7F-FD89-480A-936E-092BD5E24291}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{11A9D256-3AF2-4CD0-8FE2-17C48F1D3744}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{11A9D256-3AF2-4CD0-8FE2-17C48F1D3744}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11A9D256-3AF2-4CD0-8FE2-17C48F1D3744}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11A9D256-3AF2-4CD0-8FE2-17C48F1D3744}.Release|Any CPU.Build.0 = Release|Any CPU
{EEB11AD9-BECF-4B63-B625-48E95A582351}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EEB11AD9-BECF-4B63-B625-48E95A582351}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EEB11AD9-BECF-4B63-B625-48E95A582351}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EEB11AD9-BECF-4B63-B625-48E95A582351}.Release|Any CPU.Build.0 = Release|Any CPU
{0DA5F63F-007B-4FDC-8F18-8640F708A985}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0DA5F63F-007B-4FDC-8F18-8640F708A985}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0DA5F63F-007B-4FDC-8F18-8640F708A985}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0DA5F63F-007B-4FDC-8F18-8640F708A985}.Release|Any CPU.Build.0 = Release|Any CPU
{0A325D7F-FD89-480A-936E-092BD5E24291}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0A325D7F-FD89-480A-936E-092BD5E24291}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0A325D7F-FD89-480A-936E-092BD5E24291}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0A325D7F-FD89-480A-936E-092BD5E24291}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B2B59B62-32B7-4984-8597-60E04F2A006D}
EndGlobalSection
EndGlobal