-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodecExample.sln
66 lines (66 loc) · 4.31 KB
/
CodecExample.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31912.275
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodecExample", "CodecExample\CodecExample.csproj", "{EB6D62BA-DE08-45E1-81A7-5A64EBFA4D7F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodecExample.Common", "CodecExample.Common\CodecExample.Common.csproj", "{D9AE492F-EFD4-458F-A831-CD73B51D2389}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodecExample.Common.Tests", "CodecExample.Common.Tests\CodecExample.Common.Tests.csproj", "{203CF825-44FC-472A-ABD8-DA54A3AAEFE4}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodecExample.Client", "CodecExample.Client\CodecExample.Client.csproj", "{FB7487AC-D919-495E-A616-7D7E8FDC2188}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodecExample.Tests", "CodecExample.Tests\CodecExample.Tests.csproj", "{A4AE5E23-3034-4E33-BB3B-D56B5A2CEF92}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodecExample.Data.Sqlite", "CodecExample.Data.Sqlite\CodecExample.Data.Sqlite.csproj", "{E0084A73-E4BC-42F5-96E6-1C44EAF55135}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodecExample.Common.Protobuf", "CodecExample.Common.Protobuf\CodecExample.Common.Protobuf.csproj", "{96B82419-B8A6-4656-A8D8-CF6005B4148E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Assets", "Assets", "{8E1CFDB7-BFF8-4419-A38F-9CB749B3650C}"
ProjectSection(SolutionItems) = preProject
Readme.md = Readme.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EB6D62BA-DE08-45E1-81A7-5A64EBFA4D7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EB6D62BA-DE08-45E1-81A7-5A64EBFA4D7F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EB6D62BA-DE08-45E1-81A7-5A64EBFA4D7F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EB6D62BA-DE08-45E1-81A7-5A64EBFA4D7F}.Release|Any CPU.Build.0 = Release|Any CPU
{D9AE492F-EFD4-458F-A831-CD73B51D2389}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D9AE492F-EFD4-458F-A831-CD73B51D2389}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D9AE492F-EFD4-458F-A831-CD73B51D2389}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D9AE492F-EFD4-458F-A831-CD73B51D2389}.Release|Any CPU.Build.0 = Release|Any CPU
{203CF825-44FC-472A-ABD8-DA54A3AAEFE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{203CF825-44FC-472A-ABD8-DA54A3AAEFE4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{203CF825-44FC-472A-ABD8-DA54A3AAEFE4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{203CF825-44FC-472A-ABD8-DA54A3AAEFE4}.Release|Any CPU.Build.0 = Release|Any CPU
{FB7487AC-D919-495E-A616-7D7E8FDC2188}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FB7487AC-D919-495E-A616-7D7E8FDC2188}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FB7487AC-D919-495E-A616-7D7E8FDC2188}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FB7487AC-D919-495E-A616-7D7E8FDC2188}.Release|Any CPU.Build.0 = Release|Any CPU
{A4AE5E23-3034-4E33-BB3B-D56B5A2CEF92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A4AE5E23-3034-4E33-BB3B-D56B5A2CEF92}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A4AE5E23-3034-4E33-BB3B-D56B5A2CEF92}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A4AE5E23-3034-4E33-BB3B-D56B5A2CEF92}.Release|Any CPU.Build.0 = Release|Any CPU
{E0084A73-E4BC-42F5-96E6-1C44EAF55135}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E0084A73-E4BC-42F5-96E6-1C44EAF55135}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E0084A73-E4BC-42F5-96E6-1C44EAF55135}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E0084A73-E4BC-42F5-96E6-1C44EAF55135}.Release|Any CPU.Build.0 = Release|Any CPU
{96B82419-B8A6-4656-A8D8-CF6005B4148E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{96B82419-B8A6-4656-A8D8-CF6005B4148E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{96B82419-B8A6-4656-A8D8-CF6005B4148E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{96B82419-B8A6-4656-A8D8-CF6005B4148E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0D65F201-1135-4189-BF91-79EDFBC72709}
EndGlobalSection
EndGlobal