-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSourceControlSystem.sln
More file actions
67 lines (67 loc) · 4.55 KB
/
SourceControlSystem.sln
File metadata and controls
67 lines (67 loc) · 4.55 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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Server", "Server", "{A6273C0B-8196-4293-9AFA-4972363AD6AB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceControlSystem.Api", "Server\SourceControlSystem.Api\SourceControlSystem.Api.csproj", "{60062912-DDFC-4A63-8275-D2DFB4B0B57D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Data", "Data", "{11BA83F1-E628-4B12-8347-4BE0CF2C50EE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceControlSystem.Models", "Data\SourceControlSystem.Models\SourceControlSystem.Models.csproj", "{322F5B6F-FE8D-4388-9630-1778BAAF3013}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceControlSystem.Data", "Data\SourceControlSystem.Data\SourceControlSystem.Data.csproj", "{1E1B7347-F795-4C87-8E41-1E54F13C87ED}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceControlSystem.Common", "SourceControlSystem.Common\SourceControlSystem.Common.csproj", "{F8B47AA8-8BD9-4002-BDE2-AD27AB2BA0F4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Services", "Services", "{73CF8B15-7058-4E7F-B020-8DA9EEBEB0FD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceControlSystem.Services.Data", "Services\SourceControlSystem.Services.Data\SourceControlSystem.Services.Data.csproj", "{FE7C45E4-3BC1-4DA3-A8CA-3FA5CC428647}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{310E1C45-0DCC-49BB-BB09-7613E11E7BF1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceControlSystem.Api.Test", "Test\SourceControlSystem.Api.Test\SourceControlSystem.Api.Test.csproj", "{F537A75F-5261-40E4-8B26-40E7521D7814}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{60062912-DDFC-4A63-8275-D2DFB4B0B57D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{60062912-DDFC-4A63-8275-D2DFB4B0B57D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{60062912-DDFC-4A63-8275-D2DFB4B0B57D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{60062912-DDFC-4A63-8275-D2DFB4B0B57D}.Release|Any CPU.Build.0 = Release|Any CPU
{322F5B6F-FE8D-4388-9630-1778BAAF3013}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{322F5B6F-FE8D-4388-9630-1778BAAF3013}.Debug|Any CPU.Build.0 = Debug|Any CPU
{322F5B6F-FE8D-4388-9630-1778BAAF3013}.Release|Any CPU.ActiveCfg = Release|Any CPU
{322F5B6F-FE8D-4388-9630-1778BAAF3013}.Release|Any CPU.Build.0 = Release|Any CPU
{1E1B7347-F795-4C87-8E41-1E54F13C87ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1E1B7347-F795-4C87-8E41-1E54F13C87ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1E1B7347-F795-4C87-8E41-1E54F13C87ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1E1B7347-F795-4C87-8E41-1E54F13C87ED}.Release|Any CPU.Build.0 = Release|Any CPU
{F8B47AA8-8BD9-4002-BDE2-AD27AB2BA0F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F8B47AA8-8BD9-4002-BDE2-AD27AB2BA0F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8B47AA8-8BD9-4002-BDE2-AD27AB2BA0F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8B47AA8-8BD9-4002-BDE2-AD27AB2BA0F4}.Release|Any CPU.Build.0 = Release|Any CPU
{FE7C45E4-3BC1-4DA3-A8CA-3FA5CC428647}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FE7C45E4-3BC1-4DA3-A8CA-3FA5CC428647}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE7C45E4-3BC1-4DA3-A8CA-3FA5CC428647}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE7C45E4-3BC1-4DA3-A8CA-3FA5CC428647}.Release|Any CPU.Build.0 = Release|Any CPU
{F537A75F-5261-40E4-8B26-40E7521D7814}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F537A75F-5261-40E4-8B26-40E7521D7814}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F537A75F-5261-40E4-8B26-40E7521D7814}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F537A75F-5261-40E4-8B26-40E7521D7814}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{60062912-DDFC-4A63-8275-D2DFB4B0B57D} = {A6273C0B-8196-4293-9AFA-4972363AD6AB}
{322F5B6F-FE8D-4388-9630-1778BAAF3013} = {11BA83F1-E628-4B12-8347-4BE0CF2C50EE}
{1E1B7347-F795-4C87-8E41-1E54F13C87ED} = {11BA83F1-E628-4B12-8347-4BE0CF2C50EE}
{FE7C45E4-3BC1-4DA3-A8CA-3FA5CC428647} = {73CF8B15-7058-4E7F-B020-8DA9EEBEB0FD}
{F537A75F-5261-40E4-8B26-40E7521D7814} = {310E1C45-0DCC-49BB-BB09-7613E11E7BF1}
EndGlobalSection
EndGlobal