-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWebLogger.sln
More file actions
88 lines (88 loc) · 5.85 KB
/
WebLogger.sln
File metadata and controls
88 lines (88 loc) · 5.85 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33627.172
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebLogger", "source\WebLogger\WebLogger.csproj", "{C55C9870-5C71-4928-87D9-56A476B339B7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebLogger.Crestron", "source\WebLogger.Crestron\WebLogger.Crestron.csproj", "{30686F8E-CB48-4B5F-B6D1-F36ACA553930}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebLogger.CrestronApp", "examples\WebLogger.CrestronApp\WebLogger.CrestronApp.csproj", "{9BBF2F7E-53D0-4395-AFC9-73DEA57FCC14}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebLogger.ConsoleApp", "examples\WebLogger.ConsoleApp\WebLogger.ConsoleApp.csproj", "{510BD36C-8ADB-4E15-8757-AECDA6F50A92}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7451F827-4A16-4E7E-9E5F-4813936FE4B4}"
ProjectSection(SolutionItems) = preProject
source\Directory.Build.props = source\Directory.Build.props
.github\workflows\dotnet-beta.yml = .github\workflows\dotnet-beta.yml
.github\workflows\dotnet-release.yml = .github\workflows\dotnet-release.yml
.github\workflows\dotnet-test.yml = .github\workflows\dotnet-test.yml
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{C98044B7-EF2C-4879-B5A7-848A27305B94}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{201CA3F6-C39C-492A-8FB4-E06810AC90F9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{73F39E85-6280-49D8-99D6-130999D0EADA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebLogger_UnitTests", "tests\WebLogger_UnitTests\WebLogger_UnitTests.csproj", "{B3044627-698D-4E76-81CA-34EFE79C3927}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebLogger.Serilog", "source\WebLogger.Serilog\WebLogger.Serilog.csproj", "{8719CA40-5DE3-40D7-94DD-CDC452056850}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebLogger.Generators", "source\WebLogger.Generators\WebLogger.Generators.csproj", "{102E0DD8-91A8-440E-B76F-104D022D0C1A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebLogger.Benchmarks", "tests\WebLogger.Benchmarks\WebLogger.Benchmarks.csproj", "{8C3A18B4-6AE5-48BF-85DF-ADECCF299636}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C55C9870-5C71-4928-87D9-56A476B339B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C55C9870-5C71-4928-87D9-56A476B339B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C55C9870-5C71-4928-87D9-56A476B339B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C55C9870-5C71-4928-87D9-56A476B339B7}.Release|Any CPU.Build.0 = Release|Any CPU
{30686F8E-CB48-4B5F-B6D1-F36ACA553930}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{30686F8E-CB48-4B5F-B6D1-F36ACA553930}.Debug|Any CPU.Build.0 = Debug|Any CPU
{30686F8E-CB48-4B5F-B6D1-F36ACA553930}.Release|Any CPU.ActiveCfg = Release|Any CPU
{30686F8E-CB48-4B5F-B6D1-F36ACA553930}.Release|Any CPU.Build.0 = Release|Any CPU
{9BBF2F7E-53D0-4395-AFC9-73DEA57FCC14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9BBF2F7E-53D0-4395-AFC9-73DEA57FCC14}.Release|Any CPU.ActiveCfg = Release|Any CPU
{510BD36C-8ADB-4E15-8757-AECDA6F50A92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{510BD36C-8ADB-4E15-8757-AECDA6F50A92}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3044627-698D-4E76-81CA-34EFE79C3927}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B3044627-698D-4E76-81CA-34EFE79C3927}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B3044627-698D-4E76-81CA-34EFE79C3927}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3044627-698D-4E76-81CA-34EFE79C3927}.Release|Any CPU.Build.0 = Release|Any CPU
{8719CA40-5DE3-40D7-94DD-CDC452056850}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8719CA40-5DE3-40D7-94DD-CDC452056850}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8719CA40-5DE3-40D7-94DD-CDC452056850}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8719CA40-5DE3-40D7-94DD-CDC452056850}.Release|Any CPU.Build.0 = Release|Any CPU
{102E0DD8-91A8-440E-B76F-104D022D0C1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{102E0DD8-91A8-440E-B76F-104D022D0C1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{102E0DD8-91A8-440E-B76F-104D022D0C1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{102E0DD8-91A8-440E-B76F-104D022D0C1A}.Release|Any CPU.Build.0 = Release|Any CPU
{8C3A18B4-6AE5-48BF-85DF-ADECCF299636}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C3A18B4-6AE5-48BF-85DF-ADECCF299636}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C3A18B4-6AE5-48BF-85DF-ADECCF299636}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C3A18B4-6AE5-48BF-85DF-ADECCF299636}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C55C9870-5C71-4928-87D9-56A476B339B7} = {201CA3F6-C39C-492A-8FB4-E06810AC90F9}
{30686F8E-CB48-4B5F-B6D1-F36ACA553930} = {201CA3F6-C39C-492A-8FB4-E06810AC90F9}
{9BBF2F7E-53D0-4395-AFC9-73DEA57FCC14} = {C98044B7-EF2C-4879-B5A7-848A27305B94}
{510BD36C-8ADB-4E15-8757-AECDA6F50A92} = {C98044B7-EF2C-4879-B5A7-848A27305B94}
{B3044627-698D-4E76-81CA-34EFE79C3927} = {73F39E85-6280-49D8-99D6-130999D0EADA}
{8719CA40-5DE3-40D7-94DD-CDC452056850} = {201CA3F6-C39C-492A-8FB4-E06810AC90F9}
{102E0DD8-91A8-440E-B76F-104D022D0C1A} = {201CA3F6-C39C-492A-8FB4-E06810AC90F9}
{8C3A18B4-6AE5-48BF-85DF-ADECCF299636} = {73F39E85-6280-49D8-99D6-130999D0EADA}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9AE64309-38A1-4A68-AE5C-A52ECEB996D7}
EndGlobalSection
EndGlobal