-
Notifications
You must be signed in to change notification settings - Fork 0
/
ShoppingList.sln
109 lines (109 loc) · 7.33 KB
/
ShoppingList.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34031.279
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3 - Domain", "3 - Domain", "{E2DD306A-152F-4F8E-AFC1-0811FBE5F50B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "2 - Application", "2 - Application", "{4607D323-C767-4257-AD55-8ECFF0E178A8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.Application.Tetsts", "tests\ShoppingList.Application.Tetsts\ShoppingList.Application.Tetsts.csproj", "{CD84FCC5-DD46-4EA4-9B7A-3180C0F4A453}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.Application", "src\ShoppingList.Application\ShoppingList.Application.csproj", "{A2B6986F-1A1E-435A-90E2-E1FD0A5B9B53}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.Domain", "src\ShoppingList.Domain\ShoppingList.Domain.csproj", "{9A777B27-F9DF-40A9-9341-4602D92E8380}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.Domain.Tests", "tests\ShoppingList.Domain.Tests\ShoppingList.Domain.Tests.csproj", "{F9929D71-9C1E-4769-AD97-9638C1A572F9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "5 - IntegrationTests", "5 - IntegrationTests", "{5BE150C4-0CE8-4937-B595-CB850A61C262}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.Behavior.Tests", "tests\ShoppingList.Behavior.Tests\ShoppingList.Behavior.Tests.csproj", "{6CC2E50F-0D88-4B9B-8559-392F050AF505}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "1 - Presentation", "1 - Presentation", "{A0E0E19D-9389-498A-875E-30FEF5FB4B67}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.API", "src\ShoppingList.API\ShoppingList.API.csproj", "{792DF380-BFD9-4183-AD9D-16FA31809874}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "4 - Infrastructure", "4 - Infrastructure", "{E1D8F374-20D6-4E52-B82E-777D562D17C7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.Infrastructure", "src\ShoppingList.Infrastructure\ShoppingList.Infrastructure.csproj", "{C935AAAD-BDFA-4B0D-B36C-87031090103F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoppingList.Infrastructure.IoC", "src\ShoppingList.Infrastructure.IoC\ShoppingList.Infrastructure.IoC.csproj", "{08158E32-81C7-4B16-AECA-B7B70250CE64}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "0 - Delivery", "0 - Delivery", "{BDF9C01B-5C03-4DB3-A6AD-6FA76C266926}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docker", "Docker", "{B00C50A9-4F73-42CF-902C-EA74B9BBB788}"
ProjectSection(SolutionItems) = preProject
docker-compose.yml = docker-compose.yml
Dockerfile = Dockerfile
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Kubernetes", "Kubernetes", "{F410F248-4ED0-463D-9094-29DC3D1367D4}"
ProjectSection(SolutionItems) = preProject
kubernetes\deployment.yaml = kubernetes\deployment.yaml
kubernetes\service.yaml = kubernetes\service.yaml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Pipeline", "Pipeline", "{0DD80D29-304F-4353-B490-715020A9E930}"
ProjectSection(SolutionItems) = preProject
.github\workflows\ci-cd-pipeline.yaml = .github\workflows\ci-cd-pipeline.yaml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CD84FCC5-DD46-4EA4-9B7A-3180C0F4A453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD84FCC5-DD46-4EA4-9B7A-3180C0F4A453}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD84FCC5-DD46-4EA4-9B7A-3180C0F4A453}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD84FCC5-DD46-4EA4-9B7A-3180C0F4A453}.Release|Any CPU.Build.0 = Release|Any CPU
{A2B6986F-1A1E-435A-90E2-E1FD0A5B9B53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2B6986F-1A1E-435A-90E2-E1FD0A5B9B53}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2B6986F-1A1E-435A-90E2-E1FD0A5B9B53}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2B6986F-1A1E-435A-90E2-E1FD0A5B9B53}.Release|Any CPU.Build.0 = Release|Any CPU
{9A777B27-F9DF-40A9-9341-4602D92E8380}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A777B27-F9DF-40A9-9341-4602D92E8380}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A777B27-F9DF-40A9-9341-4602D92E8380}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A777B27-F9DF-40A9-9341-4602D92E8380}.Release|Any CPU.Build.0 = Release|Any CPU
{F9929D71-9C1E-4769-AD97-9638C1A572F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F9929D71-9C1E-4769-AD97-9638C1A572F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F9929D71-9C1E-4769-AD97-9638C1A572F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F9929D71-9C1E-4769-AD97-9638C1A572F9}.Release|Any CPU.Build.0 = Release|Any CPU
{6CC2E50F-0D88-4B9B-8559-392F050AF505}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6CC2E50F-0D88-4B9B-8559-392F050AF505}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6CC2E50F-0D88-4B9B-8559-392F050AF505}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6CC2E50F-0D88-4B9B-8559-392F050AF505}.Release|Any CPU.Build.0 = Release|Any CPU
{792DF380-BFD9-4183-AD9D-16FA31809874}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{792DF380-BFD9-4183-AD9D-16FA31809874}.Debug|Any CPU.Build.0 = Debug|Any CPU
{792DF380-BFD9-4183-AD9D-16FA31809874}.Release|Any CPU.ActiveCfg = Release|Any CPU
{792DF380-BFD9-4183-AD9D-16FA31809874}.Release|Any CPU.Build.0 = Release|Any CPU
{C935AAAD-BDFA-4B0D-B36C-87031090103F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C935AAAD-BDFA-4B0D-B36C-87031090103F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C935AAAD-BDFA-4B0D-B36C-87031090103F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C935AAAD-BDFA-4B0D-B36C-87031090103F}.Release|Any CPU.Build.0 = Release|Any CPU
{08158E32-81C7-4B16-AECA-B7B70250CE64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{08158E32-81C7-4B16-AECA-B7B70250CE64}.Debug|Any CPU.Build.0 = Debug|Any CPU
{08158E32-81C7-4B16-AECA-B7B70250CE64}.Release|Any CPU.ActiveCfg = Release|Any CPU
{08158E32-81C7-4B16-AECA-B7B70250CE64}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{CD84FCC5-DD46-4EA4-9B7A-3180C0F4A453} = {4607D323-C767-4257-AD55-8ECFF0E178A8}
{A2B6986F-1A1E-435A-90E2-E1FD0A5B9B53} = {4607D323-C767-4257-AD55-8ECFF0E178A8}
{9A777B27-F9DF-40A9-9341-4602D92E8380} = {E2DD306A-152F-4F8E-AFC1-0811FBE5F50B}
{F9929D71-9C1E-4769-AD97-9638C1A572F9} = {E2DD306A-152F-4F8E-AFC1-0811FBE5F50B}
{6CC2E50F-0D88-4B9B-8559-392F050AF505} = {5BE150C4-0CE8-4937-B595-CB850A61C262}
{792DF380-BFD9-4183-AD9D-16FA31809874} = {A0E0E19D-9389-498A-875E-30FEF5FB4B67}
{C935AAAD-BDFA-4B0D-B36C-87031090103F} = {E1D8F374-20D6-4E52-B82E-777D562D17C7}
{08158E32-81C7-4B16-AECA-B7B70250CE64} = {E1D8F374-20D6-4E52-B82E-777D562D17C7}
{B00C50A9-4F73-42CF-902C-EA74B9BBB788} = {BDF9C01B-5C03-4DB3-A6AD-6FA76C266926}
{F410F248-4ED0-463D-9094-29DC3D1367D4} = {BDF9C01B-5C03-4DB3-A6AD-6FA76C266926}
{0DD80D29-304F-4353-B490-715020A9E930} = {BDF9C01B-5C03-4DB3-A6AD-6FA76C266926}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E1E5651F-6B64-41FF-86CA-71672290F37B}
EndGlobalSection
EndGlobal