diff --git a/serilog-enrichers-thread.sln b/serilog-enrichers-thread.sln
index d577d7a..9efe3c6 100644
--- a/serilog-enrichers-thread.sln
+++ b/serilog-enrichers-thread.sln
@@ -9,7 +9,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "assets", "assets", "{E9D1B5
ProjectSection(SolutionItems) = preProject
Build.ps1 = Build.ps1
global.json = global.json
- NuGet.Config = NuGet.Config
README.md = README.md
assets\Serilog.snk = assets\Serilog.snk
EndProjectSection
diff --git a/src/Serilog.Enrichers.Thread/Enrichers/ThreadIdEnricher.cs b/src/Serilog.Enrichers.Thread/Enrichers/ThreadIdEnricher.cs
index 959877f..656cce7 100644
--- a/src/Serilog.Enrichers.Thread/Enrichers/ThreadIdEnricher.cs
+++ b/src/Serilog.Enrichers.Thread/Enrichers/ThreadIdEnricher.cs
@@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-using System.Threading;
using Serilog.Core;
using Serilog.Events;
using System;
diff --git a/src/Serilog.Enrichers.Thread/Enrichers/ThreadNameEnricher.cs b/src/Serilog.Enrichers.Thread/Enrichers/ThreadNameEnricher.cs
index ff098cb..92ac313 100644
--- a/src/Serilog.Enrichers.Thread/Enrichers/ThreadNameEnricher.cs
+++ b/src/Serilog.Enrichers.Thread/Enrichers/ThreadNameEnricher.cs
@@ -19,9 +19,8 @@
namespace Serilog.Enrichers
{
-
///
- /// Enriches log events with a ThreadName property containing the
+ /// Enriches log events with a ThreadName property containing the .
///
public class ThreadNameEnricher : ILogEventEnricher
{
diff --git a/src/Serilog.Enrichers.Thread/ThreadLoggerConfigurationExtensions.cs b/src/Serilog.Enrichers.Thread/ThreadLoggerConfigurationExtensions.cs
index 7ca9b55..41fb4f3 100644
--- a/src/Serilog.Enrichers.Thread/ThreadLoggerConfigurationExtensions.cs
+++ b/src/Serilog.Enrichers.Thread/ThreadLoggerConfigurationExtensions.cs
@@ -21,7 +21,7 @@
namespace Serilog
{
///
- /// Extends to add enrichers for .
+ /// Extends to add enrichers for
/// capabilities.
///
public static class ThreadLoggerConfigurationExtensions
@@ -31,7 +31,7 @@ public static class ThreadLoggerConfigurationExtensions
///
/// Logger enrichment configuration.
/// Configuration object allowing method chaining.
- ///
+ /// If is null.
public static LoggerConfiguration WithThreadId(
this LoggerEnrichmentConfiguration enrichmentConfiguration)
{
@@ -43,8 +43,9 @@ public static LoggerConfiguration WithThreadId(
///
/// Enrich log events with a ThreadName property containing the .
///
- ///
- ///
+ /// Logger enrichment configuration.
+ /// Configuration object allowing method chaining.
+ /// If is null.
public static LoggerConfiguration WithThreadName(
this LoggerEnrichmentConfiguration enrichmentConfiguration)
{