-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWebApiTemplate.sln
76 lines (76 loc) · 4.53 KB
/
WebApiTemplate.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
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "src\Core\Core.csproj", "{D27E1BC8-0554-43AE-B98B-057641726FC4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure", "src\Infrastructure\Infrastructure.csproj", "{D7B044A7-060A-4E6B-A457-AF93AB03C095}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi", "src\WebApi\WebApi.csproj", "{53C0477D-D1EE-4D32-9F13-84CB55133F70}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Application", "src\Application\Application.csproj", "{9D241899-3FCE-4DDA-8349-A8B3FCA48F03}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{61CD5F39-6A48-4620-B894-C30B203CC11C}"
ProjectSection(SolutionItems) = preProject
tests\Directory.Build.props = tests\Directory.Build.props
tests\Directory.Packages.props = tests\Directory.Packages.props
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "tests\UnitTests\UnitTests.csproj", "{F906C471-E4EB-4B4C-B8DE-F7B8BAF37A6D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IntegrationTests", "tests\IntegrationTests\IntegrationTests.csproj", "{A53F16CF-3876-46DC-AFD3-2F27215F893C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{2CDC2B0B-891C-442D-B9E3-0DF5946DDED2}"
ProjectSection(SolutionItems) = preProject
LICENSE = LICENSE
README.md = README.md
Directory.Build.props = Directory.Build.props
Directory.Packages.props = Directory.Packages.props
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
.pre-commit-config.yaml = .pre-commit-config.yaml
.talismanrc = .talismanrc
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C9BBF62A-E6FE-4F01-BDBB-B80CE35B24A5}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
src\Directory.Packages.props = src\Directory.Packages.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D27E1BC8-0554-43AE-B98B-057641726FC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D27E1BC8-0554-43AE-B98B-057641726FC4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D27E1BC8-0554-43AE-B98B-057641726FC4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D27E1BC8-0554-43AE-B98B-057641726FC4}.Release|Any CPU.Build.0 = Release|Any CPU
{D7B044A7-060A-4E6B-A457-AF93AB03C095}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D7B044A7-060A-4E6B-A457-AF93AB03C095}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D7B044A7-060A-4E6B-A457-AF93AB03C095}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D7B044A7-060A-4E6B-A457-AF93AB03C095}.Release|Any CPU.Build.0 = Release|Any CPU
{53C0477D-D1EE-4D32-9F13-84CB55133F70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{53C0477D-D1EE-4D32-9F13-84CB55133F70}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53C0477D-D1EE-4D32-9F13-84CB55133F70}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53C0477D-D1EE-4D32-9F13-84CB55133F70}.Release|Any CPU.Build.0 = Release|Any CPU
{9D241899-3FCE-4DDA-8349-A8B3FCA48F03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D241899-3FCE-4DDA-8349-A8B3FCA48F03}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D241899-3FCE-4DDA-8349-A8B3FCA48F03}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D241899-3FCE-4DDA-8349-A8B3FCA48F03}.Release|Any CPU.Build.0 = Release|Any CPU
{F906C471-E4EB-4B4C-B8DE-F7B8BAF37A6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F906C471-E4EB-4B4C-B8DE-F7B8BAF37A6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F906C471-E4EB-4B4C-B8DE-F7B8BAF37A6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F906C471-E4EB-4B4C-B8DE-F7B8BAF37A6D}.Release|Any CPU.Build.0 = Release|Any CPU
{A53F16CF-3876-46DC-AFD3-2F27215F893C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A53F16CF-3876-46DC-AFD3-2F27215F893C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A53F16CF-3876-46DC-AFD3-2F27215F893C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A53F16CF-3876-46DC-AFD3-2F27215F893C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{F906C471-E4EB-4B4C-B8DE-F7B8BAF37A6D} = {61CD5F39-6A48-4620-B894-C30B203CC11C}
{A53F16CF-3876-46DC-AFD3-2F27215F893C} = {61CD5F39-6A48-4620-B894-C30B203CC11C}
{C9BBF62A-E6FE-4F01-BDBB-B80CE35B24A5} = {2CDC2B0B-891C-442D-B9E3-0DF5946DDED2}
EndGlobalSection
EndGlobal