-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResponsibilityChain.sln
50 lines (50 loc) · 3.25 KB
/
ResponsibilityChain.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
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResponsibilityChain", "src\ResponsibilityChain\ResponsibilityChain.csproj", "{BB925365-43AC-4D30-B210-BD52AE9DF020}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResponsibilityChain.Tests", "test\ResponsibilityChain.Tests\ResponsibilityChain.Tests.csproj", "{18C78B2A-7FD9-4B28-8DB9-E293982E6FCA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResponsibilityChain.Interception", "src\ResponsibilityChain.Interception\ResponsibilityChain.Interception.csproj", "{82EE3D37-EE78-4F8C-8B80-328C5D08A1D3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResponsibilityChain.Interception.Tests", "test\ResponsibilityChain.Interception.Tests\ResponsibilityChain.Interception.Tests.csproj", "{D94B3EC0-A6FB-4D1C-8EA0-DA8178D8117C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "global", "global", "{D6B2B0C8-FF73-4A38-8B0E-EA467242DA07}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
.gitignore = .gitignore
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2EB2B2A0-E27C-4464-864F-945D6FE76E40}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{ECD93034-B079-4D59-BAB6-B6A0EDC0D806}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BB925365-43AC-4D30-B210-BD52AE9DF020}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB925365-43AC-4D30-B210-BD52AE9DF020}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB925365-43AC-4D30-B210-BD52AE9DF020}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB925365-43AC-4D30-B210-BD52AE9DF020}.Release|Any CPU.Build.0 = Release|Any CPU
{18C78B2A-7FD9-4B28-8DB9-E293982E6FCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{18C78B2A-7FD9-4B28-8DB9-E293982E6FCA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{18C78B2A-7FD9-4B28-8DB9-E293982E6FCA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{18C78B2A-7FD9-4B28-8DB9-E293982E6FCA}.Release|Any CPU.Build.0 = Release|Any CPU
{82EE3D37-EE78-4F8C-8B80-328C5D08A1D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{82EE3D37-EE78-4F8C-8B80-328C5D08A1D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{82EE3D37-EE78-4F8C-8B80-328C5D08A1D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{82EE3D37-EE78-4F8C-8B80-328C5D08A1D3}.Release|Any CPU.Build.0 = Release|Any CPU
{D94B3EC0-A6FB-4D1C-8EA0-DA8178D8117C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D94B3EC0-A6FB-4D1C-8EA0-DA8178D8117C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D94B3EC0-A6FB-4D1C-8EA0-DA8178D8117C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D94B3EC0-A6FB-4D1C-8EA0-DA8178D8117C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{D94B3EC0-A6FB-4D1C-8EA0-DA8178D8117C} = {ECD93034-B079-4D59-BAB6-B6A0EDC0D806}
{18C78B2A-7FD9-4B28-8DB9-E293982E6FCA} = {ECD93034-B079-4D59-BAB6-B6A0EDC0D806}
{BB925365-43AC-4D30-B210-BD52AE9DF020} = {2EB2B2A0-E27C-4464-864F-945D6FE76E40}
{82EE3D37-EE78-4F8C-8B80-328C5D08A1D3} = {2EB2B2A0-E27C-4464-864F-945D6FE76E40}
EndGlobalSection
EndGlobal