forked from stphnwlsh/CleanMinimalApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CleanMinimalApi.sln
82 lines (82 loc) · 4.99 KB
/
CleanMinimalApi.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31717.71
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{179F0BD3-692C-49FD-87A4-D5A23D816BDE}"
ProjectSection(SolutionItems) = preProject
.dockerignore = .dockerignore
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
NuGet.config = NuGet.config
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{F76F0E9E-98D3-4C66-8FDD-181E8C823DDA}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{D79C9477-FC71-4927-BDB1-46982F6EB423}"
ProjectSection(SolutionItems) = preProject
build\Dockerfile = Dockerfile
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{9DBFD6CA-EFB8-43C7-9BAB-E318EE6F134B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Application", "src\Application\Application.csproj", "{71EE311D-7D24-456C-A071-222E594F87D0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Presentation", "src\Presentation\Presentation.csproj", "{B91AA43F-3487-42F4-A0B8-2A5AF4F93625}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Infrastructure", "src\Infrastructure\Infrastructure.csproj", "{CB57ACA6-350D-4538-B6F8-79D38B8A45E1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Infrastructure.Tests.Integration", "tests\Infrastructure.Tests.Integration\Infrastructure.Tests.Integration.csproj", "{7704E123-22D3-4001-A020-BDFD8F7F3E75}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Application.Tests.Unit", "tests\Application.Tests.Unit\Application.Tests.Unit.csproj", "{27106CF1-B15D-4274-98BE-3316495ACEEC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Presentation.Tests.Integration", "tests\Presentation.Tests.Integration\Presentation.Tests.Integration.csproj", "{DB7F98AB-3D02-4652-80BC-681A00168ECC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{71EE311D-7D24-456C-A071-222E594F87D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{71EE311D-7D24-456C-A071-222E594F87D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{71EE311D-7D24-456C-A071-222E594F87D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{71EE311D-7D24-456C-A071-222E594F87D0}.Release|Any CPU.Build.0 = Release|Any CPU
{B91AA43F-3487-42F4-A0B8-2A5AF4F93625}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B91AA43F-3487-42F4-A0B8-2A5AF4F93625}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B91AA43F-3487-42F4-A0B8-2A5AF4F93625}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B91AA43F-3487-42F4-A0B8-2A5AF4F93625}.Release|Any CPU.Build.0 = Release|Any CPU
{CB57ACA6-350D-4538-B6F8-79D38B8A45E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CB57ACA6-350D-4538-B6F8-79D38B8A45E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CB57ACA6-350D-4538-B6F8-79D38B8A45E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CB57ACA6-350D-4538-B6F8-79D38B8A45E1}.Release|Any CPU.Build.0 = Release|Any CPU
{7704E123-22D3-4001-A020-BDFD8F7F3E75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7704E123-22D3-4001-A020-BDFD8F7F3E75}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7704E123-22D3-4001-A020-BDFD8F7F3E75}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7704E123-22D3-4001-A020-BDFD8F7F3E75}.Release|Any CPU.Build.0 = Release|Any CPU
{27106CF1-B15D-4274-98BE-3316495ACEEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{27106CF1-B15D-4274-98BE-3316495ACEEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27106CF1-B15D-4274-98BE-3316495ACEEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{27106CF1-B15D-4274-98BE-3316495ACEEC}.Release|Any CPU.Build.0 = Release|Any CPU
{DB7F98AB-3D02-4652-80BC-681A00168ECC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DB7F98AB-3D02-4652-80BC-681A00168ECC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DB7F98AB-3D02-4652-80BC-681A00168ECC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DB7F98AB-3D02-4652-80BC-681A00168ECC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{71EE311D-7D24-456C-A071-222E594F87D0} = {F76F0E9E-98D3-4C66-8FDD-181E8C823DDA}
{B91AA43F-3487-42F4-A0B8-2A5AF4F93625} = {F76F0E9E-98D3-4C66-8FDD-181E8C823DDA}
{CB57ACA6-350D-4538-B6F8-79D38B8A45E1} = {F76F0E9E-98D3-4C66-8FDD-181E8C823DDA}
{7704E123-22D3-4001-A020-BDFD8F7F3E75} = {9DBFD6CA-EFB8-43C7-9BAB-E318EE6F134B}
{27106CF1-B15D-4274-98BE-3316495ACEEC} = {9DBFD6CA-EFB8-43C7-9BAB-E318EE6F134B}
{DB7F98AB-3D02-4652-80BC-681A00168ECC} = {9DBFD6CA-EFB8-43C7-9BAB-E318EE6F134B}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {507BE0AF-5740-4AE0-8EFB-2F84E40BFADB}
EndGlobalSection
EndGlobal