-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommuniQueue.sln
86 lines (86 loc) · 5.42 KB
/
CommuniQueue.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35312.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommuniQueue.Api", "CommuniQueue.Api\CommuniQueue.Api.csproj", "{7CFC8A4B-916C-4DE0-A858-F345A7267C18}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommuniQueue.AppHost", "CommuniQueue.AppHost\CommuniQueue.AppHost.csproj", "{D3CF796E-5A55-45FD-9EAF-7C2C270553DE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommuniQueue.ServiceDefaults", "CommuniQueue.ServiceDefaults\CommuniQueue.ServiceDefaults.csproj", "{494CB45A-4DB7-4EFD-B3A8-9627B4097DA2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommuniQueue.Contracts", "CommuniQueue.Contracts\CommuniQueue.Contracts.csproj", "{18B5219B-51E2-4904-AF13-5957A5127444}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommuniQueue.DataAccess", "CommuniQueue.DataAccess\CommuniQueue.DataAccess.csproj", "{E8187644-AF19-4FC2-81C5-B4CEB85CD8BC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommuniQueue", "CommuniQueue\CommuniQueue.csproj", "{1429CF70-07A7-4DC1-B79D-AECD9B669FF8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommuniQueue.UnitTests", "CommuniQueue.UnitTests\CommuniQueue.UnitTests.csproj", "{196022BE-C839-456B-BE5C-A8140FB1082A}"
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "ClientApp", "ClientApp\", "{EB43DF42-8228-4AB0-A432-07E63CAEA8AA}"
ProjectSection(WebsiteProperties) = preProject
TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.0"
Debug.AspNetCompiler.VirtualPath = "/localhost_54457"
Debug.AspNetCompiler.PhysicalPath = "ClientApp\"
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\localhost_54457\"
Debug.AspNetCompiler.Updateable = "true"
Debug.AspNetCompiler.ForceOverwrite = "true"
Debug.AspNetCompiler.FixedNames = "false"
Debug.AspNetCompiler.Debug = "True"
Release.AspNetCompiler.VirtualPath = "/localhost_54457"
Release.AspNetCompiler.PhysicalPath = "ClientApp\"
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\localhost_54457\"
Release.AspNetCompiler.Updateable = "true"
Release.AspNetCompiler.ForceOverwrite = "true"
Release.AspNetCompiler.FixedNames = "false"
Release.AspNetCompiler.Debug = "False"
VWDPort = "54457"
SlnRelativePath = "ClientApp\"
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7CFC8A4B-916C-4DE0-A858-F345A7267C18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7CFC8A4B-916C-4DE0-A858-F345A7267C18}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7CFC8A4B-916C-4DE0-A858-F345A7267C18}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7CFC8A4B-916C-4DE0-A858-F345A7267C18}.Release|Any CPU.Build.0 = Release|Any CPU
{D3CF796E-5A55-45FD-9EAF-7C2C270553DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D3CF796E-5A55-45FD-9EAF-7C2C270553DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D3CF796E-5A55-45FD-9EAF-7C2C270553DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D3CF796E-5A55-45FD-9EAF-7C2C270553DE}.Release|Any CPU.Build.0 = Release|Any CPU
{494CB45A-4DB7-4EFD-B3A8-9627B4097DA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{494CB45A-4DB7-4EFD-B3A8-9627B4097DA2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{494CB45A-4DB7-4EFD-B3A8-9627B4097DA2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{494CB45A-4DB7-4EFD-B3A8-9627B4097DA2}.Release|Any CPU.Build.0 = Release|Any CPU
{18B5219B-51E2-4904-AF13-5957A5127444}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{18B5219B-51E2-4904-AF13-5957A5127444}.Debug|Any CPU.Build.0 = Debug|Any CPU
{18B5219B-51E2-4904-AF13-5957A5127444}.Release|Any CPU.ActiveCfg = Release|Any CPU
{18B5219B-51E2-4904-AF13-5957A5127444}.Release|Any CPU.Build.0 = Release|Any CPU
{E8187644-AF19-4FC2-81C5-B4CEB85CD8BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E8187644-AF19-4FC2-81C5-B4CEB85CD8BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E8187644-AF19-4FC2-81C5-B4CEB85CD8BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E8187644-AF19-4FC2-81C5-B4CEB85CD8BC}.Release|Any CPU.Build.0 = Release|Any CPU
{1429CF70-07A7-4DC1-B79D-AECD9B669FF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1429CF70-07A7-4DC1-B79D-AECD9B669FF8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1429CF70-07A7-4DC1-B79D-AECD9B669FF8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1429CF70-07A7-4DC1-B79D-AECD9B669FF8}.Release|Any CPU.Build.0 = Release|Any CPU
{196022BE-C839-456B-BE5C-A8140FB1082A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{196022BE-C839-456B-BE5C-A8140FB1082A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{196022BE-C839-456B-BE5C-A8140FB1082A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{196022BE-C839-456B-BE5C-A8140FB1082A}.Release|Any CPU.Build.0 = Release|Any CPU
{EB43DF42-8228-4AB0-A432-07E63CAEA8AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EB43DF42-8228-4AB0-A432-07E63CAEA8AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EB43DF42-8228-4AB0-A432-07E63CAEA8AA}.Release|Any CPU.ActiveCfg = Debug|Any CPU
{EB43DF42-8228-4AB0-A432-07E63CAEA8AA}.Release|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FED9BD90-DF2B-4E84-888F-D4F10CF0B276}
EndGlobalSection
EndGlobal