forked from christianheld/dotnet-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetProject.sln
71 lines (71 loc) · 3.79 KB
/
NetProject.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32630.192
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{5841E530-289C-4177-BBEF-6FC2042F2949}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetProject", "src\NetProject\NetProject.csproj", "{64165BB4-2FFD-44F6-90D3-C782FA9AF103}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{105B8F32-E795-4C15-AD3E-9F2BD7A9CE45}"
ProjectSection(SolutionItems) = preProject
tests\Directory.Build.props = tests\Directory.Build.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetProject.Tests", "tests\NetProject.Tests\NetProject.Tests.csproj", "{FEFCBBBB-6CBE-46B8-BB5D-8913E9236B90}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "root", "root", "{A5181A0E-BE4A-49D7-9C35-F39629C82E18}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
.globalconfig = .globalconfig
build.cake = build.cake
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
GitVersion.yml = GitVersion.yml
global.json = global.json
nuget.config = nuget.config
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApp", "src\WebApp\WebApp.csproj", "{EAC7E52C-83FD-47FA-A8F2-D0970EAEB9B4}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApp.Tests", "tests\WebApp.Tests\WebApp.Tests.csproj", "{5F6E39A0-3EA9-4CF0-A556-34CFD811F3DE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{64165BB4-2FFD-44F6-90D3-C782FA9AF103}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{64165BB4-2FFD-44F6-90D3-C782FA9AF103}.Debug|Any CPU.Build.0 = Debug|Any CPU
{64165BB4-2FFD-44F6-90D3-C782FA9AF103}.Release|Any CPU.ActiveCfg = Release|Any CPU
{64165BB4-2FFD-44F6-90D3-C782FA9AF103}.Release|Any CPU.Build.0 = Release|Any CPU
{FEFCBBBB-6CBE-46B8-BB5D-8913E9236B90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FEFCBBBB-6CBE-46B8-BB5D-8913E9236B90}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FEFCBBBB-6CBE-46B8-BB5D-8913E9236B90}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FEFCBBBB-6CBE-46B8-BB5D-8913E9236B90}.Release|Any CPU.Build.0 = Release|Any CPU
{EAC7E52C-83FD-47FA-A8F2-D0970EAEB9B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EAC7E52C-83FD-47FA-A8F2-D0970EAEB9B4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EAC7E52C-83FD-47FA-A8F2-D0970EAEB9B4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EAC7E52C-83FD-47FA-A8F2-D0970EAEB9B4}.Release|Any CPU.Build.0 = Release|Any CPU
{5F6E39A0-3EA9-4CF0-A556-34CFD811F3DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5F6E39A0-3EA9-4CF0-A556-34CFD811F3DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5F6E39A0-3EA9-4CF0-A556-34CFD811F3DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5F6E39A0-3EA9-4CF0-A556-34CFD811F3DE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{64165BB4-2FFD-44F6-90D3-C782FA9AF103} = {5841E530-289C-4177-BBEF-6FC2042F2949}
{FEFCBBBB-6CBE-46B8-BB5D-8913E9236B90} = {105B8F32-E795-4C15-AD3E-9F2BD7A9CE45}
{EAC7E52C-83FD-47FA-A8F2-D0970EAEB9B4} = {5841E530-289C-4177-BBEF-6FC2042F2949}
{5F6E39A0-3EA9-4CF0-A556-34CFD811F3DE} = {105B8F32-E795-4C15-AD3E-9F2BD7A9CE45}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {17E5D062-4C17-480F-99B1-7D981A79491A}
EndGlobalSection
EndGlobal