-
Notifications
You must be signed in to change notification settings - Fork 25
/
TinyIpc.sln
82 lines (82 loc) · 4.7 KB
/
TinyIpc.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{099CF2BC-2C8A-4F4E-A56D-559AEB8C54B0}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
src\Directory.Build.targets = src\Directory.Build.targets
src\Directory.Packages.props = src\Directory.Packages.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{8B328111-CA92-45E0-B801-29F4283703FD}"
ProjectSection(SolutionItems) = preProject
test\Directory.Build.props = test\Directory.Build.props
test\Directory.Packages.props = test\Directory.Packages.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{AD019FAE-3B2F-4184-9038-AA9F244A4242}"
ProjectSection(SolutionItems) = preProject
samples\Directory.Build.props = samples\Directory.Build.props
samples\Directory.Packages.props = samples\Directory.Packages.props
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TinyIpc", "src\TinyIpc\TinyIpc.csproj", "{45DC56B8-5AF0-48CD-B123-93CEACBCDDC8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TinyIpc.Tests", "test\TinyIpc.Tests\TinyIpc.Tests.csproj", "{7743E174-4B64-43B0-AB34-A1EA6EBD6640}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "config", "config", "{669101F1-8854-4B82-BBBF-C40A1219968F}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitignore = .gitignore
global.json = global.json
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleApp", "samples\ConsoleApp\ConsoleApp.csproj", "{ECFD909F-3B74-4CB1-9FF0-3FB905C8E5DF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TinyIpc.Benchmarks", "test\TinyIpc.Benchmarks\TinyIpc.Benchmarks.csproj", "{6E6F4474-082A-48E0-B53A-7787E0E5AB67}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GenericHost", "samples\GenericHost\GenericHost.csproj", "{F77601BD-5C20-4D64-8786-4C2B26FF485F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{45DC56B8-5AF0-48CD-B123-93CEACBCDDC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{45DC56B8-5AF0-48CD-B123-93CEACBCDDC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{45DC56B8-5AF0-48CD-B123-93CEACBCDDC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{45DC56B8-5AF0-48CD-B123-93CEACBCDDC8}.Release|Any CPU.Build.0 = Release|Any CPU
{7743E174-4B64-43B0-AB34-A1EA6EBD6640}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7743E174-4B64-43B0-AB34-A1EA6EBD6640}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7743E174-4B64-43B0-AB34-A1EA6EBD6640}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7743E174-4B64-43B0-AB34-A1EA6EBD6640}.Release|Any CPU.Build.0 = Release|Any CPU
{ECFD909F-3B74-4CB1-9FF0-3FB905C8E5DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ECFD909F-3B74-4CB1-9FF0-3FB905C8E5DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ECFD909F-3B74-4CB1-9FF0-3FB905C8E5DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ECFD909F-3B74-4CB1-9FF0-3FB905C8E5DF}.Release|Any CPU.Build.0 = Release|Any CPU
{6E6F4474-082A-48E0-B53A-7787E0E5AB67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6E6F4474-082A-48E0-B53A-7787E0E5AB67}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6E6F4474-082A-48E0-B53A-7787E0E5AB67}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6E6F4474-082A-48E0-B53A-7787E0E5AB67}.Release|Any CPU.Build.0 = Release|Any CPU
{F77601BD-5C20-4D64-8786-4C2B26FF485F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F77601BD-5C20-4D64-8786-4C2B26FF485F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F77601BD-5C20-4D64-8786-4C2B26FF485F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F77601BD-5C20-4D64-8786-4C2B26FF485F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{45DC56B8-5AF0-48CD-B123-93CEACBCDDC8} = {099CF2BC-2C8A-4F4E-A56D-559AEB8C54B0}
{7743E174-4B64-43B0-AB34-A1EA6EBD6640} = {8B328111-CA92-45E0-B801-29F4283703FD}
{ECFD909F-3B74-4CB1-9FF0-3FB905C8E5DF} = {AD019FAE-3B2F-4184-9038-AA9F244A4242}
{6E6F4474-082A-48E0-B53A-7787E0E5AB67} = {8B328111-CA92-45E0-B801-29F4283703FD}
{F77601BD-5C20-4D64-8786-4C2B26FF485F} = {AD019FAE-3B2F-4184-9038-AA9F244A4242}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3F6FB8BA-3DC6-4202-879B-20378E13EE88}
EndGlobalSection
EndGlobal