Skip to content

Commit c226249

Browse files
committed
VersionBump : v0.39.2
1 parent ea1c823 commit c226249

File tree

20 files changed

+19
-39
lines changed

20 files changed

+19
-39
lines changed

src/CodeOfChaos.Extensions.Analyzers/CodeOfChaos.Extensions.Analyzers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<!-- Main package name -->
1414
<PackageId>CodeOfChaos.Extensions.Analyzers</PackageId>
15-
<Version>0.39.1</Version>
15+
<Version>0.39.2</Version>
1616
<Authors>Anna Sas</Authors>
1717
<Description>Additional diagnostics to make CodeOfChaos.Extensions easier to use as a developer</Description>
1818
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.AspNetCore/CodeOfChaos.Extensions.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.Extensions.AspNetCore</PackageId>
11-
<Version>0.39.1</Version>
11+
<Version>0.39.2</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>A Library of broadly used extensions for AspNetCore</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.DependencyInjection.Generators/CodeOfChaos.Extensions.DependencyInjection.Generators.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<IsPackable>true</IsPackable>
1414
<PackageId>CodeOfChaos.Extensions.DependencyInjection.Generators</PackageId> <!-- Main package name -->
15-
<Version>0.39.1</Version> <!-- Package version -->
15+
<Version>0.39.2</Version> <!-- Package version -->
1616
<Authors>Anna Sas</Authors>
1717
<Description>A small package allowing easy collection of dependency injection services</Description>
1818
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.DependencyInjection/CodeOfChaos.Extensions.DependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<IsPackable>true</IsPackable>
99
<PackageId>CodeOfChaos.Extensions.DependencyInjection</PackageId> <!-- Main package name -->
10-
<Version>0.39.1</Version> <!-- Package version -->
10+
<Version>0.39.2</Version> <!-- Package version -->
1111
<Authors>Anna Sas</Authors>
1212
<Description>A small package allowing easy collection of dependency injection services</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.EntityFrameworkCore/CodeOfChaos.Extensions.EntityFrameworkCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Main package name -->
99
<PackageId>CodeOfChaos.Extensions.EntityFrameworkCore</PackageId>
10-
<Version>0.39.1</Version>
10+
<Version>0.39.2</Version>
1111
<Authors>Anna Sas</Authors>
1212
<Description>A Library of broadly used extensions for EntityFrameworkCore</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.FluentValidation/CodeOfChaos.Extensions.FluentValidation.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Main package name -->
99
<PackageId>CodeOfChaos.Extensions.FluentValidation</PackageId>
10-
<Version>0.39.1</Version>
10+
<Version>0.39.2</Version>
1111
<Authors>Anna Sas</Authors>
1212
<Description>A Library of extensions for FluentValidation</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.MicrosoftLogging/CodeOfChaos.Extensions.MicrosoftLogging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Main package name -->
99
<PackageId>CodeOfChaos.Extensions.MicrosoftLogging</PackageId>
10-
<Version>0.39.1</Version>
10+
<Version>0.39.2</Version>
1111
<Authors>Anna Sas</Authors>
1212
<Description>A simple extension library for Microsoft's logging</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.Serilog/CodeOfChaos.Extensions.Serilog.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Main package name -->
99
<PackageId>CodeOfChaos.Extensions.Serilog</PackageId>
10-
<Version>0.39.1</Version>
10+
<Version>0.39.2</Version>
1111
<Authors>Anna Sas</Authors>
1212
<Description>A Library of broadly used extensions for Serilog</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-extensions</PackageProjectUrl>

src/CodeOfChaos.Extensions.Serilog/Enrichers/PaddedSectionEnricher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public PaddedSectionEnricher(int maxLength) {
2323
// Methods
2424
// -----------------------------------------------------------------------------------------------------------------
2525
public void Enrich(LogEvent logEvent, ILogEventPropertyFactory propertyFactory) {
26-
if (!logEvent.Properties.TryGetValue("Section", out LogEventPropertyValue? sectionProperty)) {
26+
if (!logEvent.Properties.TryGetValue("SourceContext", out LogEventPropertyValue? sectionProperty)) {
2727
// If "Section" is not defined, fallback to default value
2828
sectionProperty = new ScalarValue(string.Empty);
2929
}

src/CodeOfChaos.Extensions.Serilog/Enrichers/SectionEnricher.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)