-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAspNetCoreTestPractices.sln
More file actions
57 lines (57 loc) · 3.53 KB
/
AspNetCoreTestPractices.sln
File metadata and controls
57 lines (57 loc) · 3.53 KB
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.32804.182
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{485AB22B-2350-4BFF-91F5-702804A876F3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{09C0DB21-D093-4157-B390-07731B072D5F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleApp", "src\ConsoleApp\ConsoleApp.csproj", "{0DA2B7A0-4A93-4B07-8031-32EB03E87070}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCore.Test.Unit", "test\AspNetCore.Test.Unit\AspNetCore.Test.Unit.csproj", "{BCAADC9C-3C99-4CCB-B6B9-9671FC4C556A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCore.Test.Specs", "test\AspNetCore.Test.Specs\AspNetCore.Test.Specs.csproj", "{5A74E6C1-7614-4501-B961-83C2675DCD1B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspNetCore.Test.Integration", "test\AspNetCore.Test.Integration\AspNetCore.Test.Integration.csproj", "{1F81E618-DD4A-4E43-B6A0-3A0AE6FF5164}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "buildscript\_build.csproj", "{886FF3A2-5814-41D9-B66C-64CF77FE96EC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{886FF3A2-5814-41D9-B66C-64CF77FE96EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{886FF3A2-5814-41D9-B66C-64CF77FE96EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0DA2B7A0-4A93-4B07-8031-32EB03E87070}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0DA2B7A0-4A93-4B07-8031-32EB03E87070}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0DA2B7A0-4A93-4B07-8031-32EB03E87070}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0DA2B7A0-4A93-4B07-8031-32EB03E87070}.Release|Any CPU.Build.0 = Release|Any CPU
{BCAADC9C-3C99-4CCB-B6B9-9671FC4C556A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BCAADC9C-3C99-4CCB-B6B9-9671FC4C556A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BCAADC9C-3C99-4CCB-B6B9-9671FC4C556A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BCAADC9C-3C99-4CCB-B6B9-9671FC4C556A}.Release|Any CPU.Build.0 = Release|Any CPU
{5A74E6C1-7614-4501-B961-83C2675DCD1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5A74E6C1-7614-4501-B961-83C2675DCD1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5A74E6C1-7614-4501-B961-83C2675DCD1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5A74E6C1-7614-4501-B961-83C2675DCD1B}.Release|Any CPU.Build.0 = Release|Any CPU
{1F81E618-DD4A-4E43-B6A0-3A0AE6FF5164}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1F81E618-DD4A-4E43-B6A0-3A0AE6FF5164}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1F81E618-DD4A-4E43-B6A0-3A0AE6FF5164}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1F81E618-DD4A-4E43-B6A0-3A0AE6FF5164}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{0DA2B7A0-4A93-4B07-8031-32EB03E87070} = {485AB22B-2350-4BFF-91F5-702804A876F3}
{BCAADC9C-3C99-4CCB-B6B9-9671FC4C556A} = {09C0DB21-D093-4157-B390-07731B072D5F}
{5A74E6C1-7614-4501-B961-83C2675DCD1B} = {09C0DB21-D093-4157-B390-07731B072D5F}
{1F81E618-DD4A-4E43-B6A0-3A0AE6FF5164} = {09C0DB21-D093-4157-B390-07731B072D5F}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C911988D-C3CB-486A-8E17-E509CBC3E730}
EndGlobalSection
EndGlobal