Skip to content
This repository was archived by the owner on Jul 27, 2024. It is now read-only.

Commit fff4233

Browse files
author
silentdevnull
committed
Complete first version of a basic logger.
1 parent 0ad8b1c commit fff4233

17 files changed

+627
-0
lines changed

.config/dotnet-tools.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {}
5+
}

.editorconfig

Lines changed: 371 additions & 0 deletions
Large diffs are not rendered by default.

.idea/.idea.SmplLogger/.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.SmplLogger/.idea/indexLayout.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.SmplLogger/.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.SmplLogger/.idea/projectSettingsUpdater.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.SmplLogger/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SmplLogger.sln

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30114.105
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{82ED88E6-BE10-406F-92E6-EB0348817FD3}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilentDevNull.SmplLogger", "src\SilentDevNull.SmplLogger\SilentDevNull.SmplLogger.csproj", "{B399EA71-364D-43CD-A684-297ACE024767}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmplLoggerConsoleTest", "src\SmplLoggerConsoleTest\SmplLoggerConsoleTest.csproj", "{3C78C3E6-8D1F-4AFB-B1FB-85F937B28B42}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{B399EA71-364D-43CD-A684-297ACE024767}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{B399EA71-364D-43CD-A684-297ACE024767}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{B399EA71-364D-43CD-A684-297ACE024767}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{B399EA71-364D-43CD-A684-297ACE024767}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{3C78C3E6-8D1F-4AFB-B1FB-85F937B28B42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{3C78C3E6-8D1F-4AFB-B1FB-85F937B28B42}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{3C78C3E6-8D1F-4AFB-B1FB-85F937B28B42}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{3C78C3E6-8D1F-4AFB-B1FB-85F937B28B42}.Release|Any CPU.Build.0 = Release|Any CPU
29+
EndGlobalSection
30+
GlobalSection(NestedProjects) = preSolution
31+
{B399EA71-364D-43CD-A684-297ACE024767} = {82ED88E6-BE10-406F-92E6-EB0348817FD3}
32+
{3C78C3E6-8D1F-4AFB-B1FB-85F937B28B42} = {82ED88E6-BE10-406F-92E6-EB0348817FD3}
33+
EndGlobalSection
34+
EndGlobal

global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "6.0.101"
4+
}
5+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
global using System;
2+
global using System.Collections.Concurrent;
3+
global using System.Collections.Generic;
4+
global using System.IO;
5+
global using System.Text;
6+
global using System.Text.Json;
7+
8+
global using Microsoft.Extensions.DependencyInjection;
9+
global using Microsoft.Extensions.DependencyInjection.Extensions;
10+
global using Microsoft.Extensions.Logging;
11+
global using Microsoft.Extensions.Logging.Configuration;
12+

0 commit comments

Comments
 (0)