-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathMinimalApiArchitecture.sln
59 lines (59 loc) · 3.45 KB
/
MinimalApiArchitecture.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31825.309
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{F4393023-56DA-4861-BD46-7281AA6615D3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Api", "src\Api\Api.csproj", "{284BA662-309D-4CD4-8DCD-1858D534999E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{A709DF0B-0470-4F7D-84D2-7B750952CC99}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Api.IntegrationTests", "tests\Api.IntegrationTests\Api.IntegrationTests.csproj", "{005CE599-279E-4070-A66B-08F3780DD50E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{EFBE4DE4-C1F5-471F-A113-CABDF843CD2B}"
ProjectSection(SolutionItems) = preProject
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Application", "src\Application\Application.csproj", "{0374315B-7161-45DD-ABF8-56CD02A1EAEB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Application.Unit.Tests", "tests\Application.Unit.Tests\Application.Unit.Tests.csproj", "{00C997D7-B459-4DD0-8A1F-CADE18BF2609}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{284BA662-309D-4CD4-8DCD-1858D534999E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{284BA662-309D-4CD4-8DCD-1858D534999E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{284BA662-309D-4CD4-8DCD-1858D534999E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{284BA662-309D-4CD4-8DCD-1858D534999E}.Release|Any CPU.Build.0 = Release|Any CPU
{005CE599-279E-4070-A66B-08F3780DD50E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{005CE599-279E-4070-A66B-08F3780DD50E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{005CE599-279E-4070-A66B-08F3780DD50E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{005CE599-279E-4070-A66B-08F3780DD50E}.Release|Any CPU.Build.0 = Release|Any CPU
{0374315B-7161-45DD-ABF8-56CD02A1EAEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0374315B-7161-45DD-ABF8-56CD02A1EAEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0374315B-7161-45DD-ABF8-56CD02A1EAEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0374315B-7161-45DD-ABF8-56CD02A1EAEB}.Release|Any CPU.Build.0 = Release|Any CPU
{00C997D7-B459-4DD0-8A1F-CADE18BF2609}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{00C997D7-B459-4DD0-8A1F-CADE18BF2609}.Debug|Any CPU.Build.0 = Debug|Any CPU
{00C997D7-B459-4DD0-8A1F-CADE18BF2609}.Release|Any CPU.ActiveCfg = Release|Any CPU
{00C997D7-B459-4DD0-8A1F-CADE18BF2609}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{284BA662-309D-4CD4-8DCD-1858D534999E} = {F4393023-56DA-4861-BD46-7281AA6615D3}
{005CE599-279E-4070-A66B-08F3780DD50E} = {A709DF0B-0470-4F7D-84D2-7B750952CC99}
{0374315B-7161-45DD-ABF8-56CD02A1EAEB} = {F4393023-56DA-4861-BD46-7281AA6615D3}
{00C997D7-B459-4DD0-8A1F-CADE18BF2609} = {A709DF0B-0470-4F7D-84D2-7B750952CC99}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3CACA112-3997-48CE-B42C-608AC0836824}
EndGlobalSection
EndGlobal