-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCubeIntersection.sln
More file actions
68 lines (68 loc) · 4.67 KB
/
Copy pathCubeIntersection.sln
File metadata and controls
68 lines (68 loc) · 4.67 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
58
59
60
61
62
63
64
65
66
67
68
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36203.30 d17.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CubeIntersection.WebApi", "CubeIntersection.WebApi\CubeIntersection.WebApi.csproj", "{899A304A-D710-4EEC-9FF6-CE7997BF9EC3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "01 - Distributed Web Service Layer", "01 - Distributed Web Service Layer", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "02 - Application Layer", "02 - Application Layer", "{A68A6A32-D965-4AB6-8411-7B32A3F0FBDE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "03 - Domain Layer", "03 - Domain Layer", "{7F6C6852-EC11-45BD-82A7-3A6FF1329A97}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "04 - Infrastructure Layer", "04 - Infrastructure Layer", "{1756C22B-8A4B-4A66-ABC4-CE7E375C77EB}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "05 - Cross Cutting Layer", "05 - Cross Cutting Layer", "{691ECD02-D8EA-41A2-9B6D-7E601FAD8D04}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CubeIntersection.Domain.Entities", "CubeIntersection.Domain\CubeIntersection.Domain.Entities.csproj", "{8D64F42E-3B41-43D9-8B7D-69817046C26E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CubeIntersection.Application.Services", "CubeIntersection.Application\CubeIntersection.Application.Services.csproj", "{D565C653-320B-4F4B-A913-48B1362807CB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CubeIntersection.Distributed.Dtos", "CubeIntersection.Distributed.Dtos\CubeIntersection.Distributed.Dtos.csproj", "{B52D564C-5911-47CE-9073-E3C9AC29729D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CubeIntersection.Application.Services.Unit.Tests", "CubeIntersection.Application.Services.Unit.Tests\CubeIntersection.Application.Services.Unit.Tests.csproj", "{ADC1A50E-4CEC-4B5A-8142-5060300F25A6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test", "Test", "{2F185F94-64C7-448E-99BF-A093457157DF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{899A304A-D710-4EEC-9FF6-CE7997BF9EC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{899A304A-D710-4EEC-9FF6-CE7997BF9EC3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{899A304A-D710-4EEC-9FF6-CE7997BF9EC3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{899A304A-D710-4EEC-9FF6-CE7997BF9EC3}.Release|Any CPU.Build.0 = Release|Any CPU
{8D64F42E-3B41-43D9-8B7D-69817046C26E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8D64F42E-3B41-43D9-8B7D-69817046C26E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8D64F42E-3B41-43D9-8B7D-69817046C26E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8D64F42E-3B41-43D9-8B7D-69817046C26E}.Release|Any CPU.Build.0 = Release|Any CPU
{D565C653-320B-4F4B-A913-48B1362807CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D565C653-320B-4F4B-A913-48B1362807CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D565C653-320B-4F4B-A913-48B1362807CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D565C653-320B-4F4B-A913-48B1362807CB}.Release|Any CPU.Build.0 = Release|Any CPU
{B52D564C-5911-47CE-9073-E3C9AC29729D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B52D564C-5911-47CE-9073-E3C9AC29729D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B52D564C-5911-47CE-9073-E3C9AC29729D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B52D564C-5911-47CE-9073-E3C9AC29729D}.Release|Any CPU.Build.0 = Release|Any CPU
{ADC1A50E-4CEC-4B5A-8142-5060300F25A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ADC1A50E-4CEC-4B5A-8142-5060300F25A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ADC1A50E-4CEC-4B5A-8142-5060300F25A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ADC1A50E-4CEC-4B5A-8142-5060300F25A6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{899A304A-D710-4EEC-9FF6-CE7997BF9EC3} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
{8D64F42E-3B41-43D9-8B7D-69817046C26E} = {7F6C6852-EC11-45BD-82A7-3A6FF1329A97}
{D565C653-320B-4F4B-A913-48B1362807CB} = {A68A6A32-D965-4AB6-8411-7B32A3F0FBDE}
{B52D564C-5911-47CE-9073-E3C9AC29729D} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
{ADC1A50E-4CEC-4B5A-8142-5060300F25A6} = {2F185F94-64C7-448E-99BF-A093457157DF}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {57B8671B-7079-4C4A-BA3B-7D009D1E3E05}
EndGlobalSection
EndGlobal