NLog.Extensions.ThisClass by Trym Pet
NuGet / site data
Details
Info
Name: NLog.Extensions.ThisClass
Create class loggers using source generators powered by Roslyn.
Author: Trym Pet
NuGet: https://www.nuget.org/packages/NLog.Extensions.ThisClass/
You can find more details at https://github.com/trympet/ThisClass
Author
Trym Pet

Original Readme
ThisClass
Exposes class and type information as constants in the ThisClass class using source generators powered by Roslyn, inspired by ThisAssembly.
ThisClass
Add the ThisClassAttribute to generate type information for a class.
[ThisClass]
partial class Demo
{
public Demo()
{
Logger.Info($"Hello from {ThisClass.FullName}"); // SampleApp.Demo
}
}
NLog.Extensions.ThisClass
Create class loggers without using reflection.
using SomeNamespace;
namespace SampleApp.NLog
{
...
namespace AnotherNamespace
{
using SomeOtherNamespace;
[ClassLoggerLazy]
partial class Demo2<T> : SomeInterface<T> where T : SomeOtherInterface
{
public static void SayHello()
{
Logger.Info("Hello");
}
[ClassLogger]
internal partial class NestedClass : SomeInterface<SomeOtherInterface>
{
}
}
}
}
Looks like this behind the scenes
// <auto-generated/>
#nullable enable
namespace SampleApp.NLog
{
partial class Demo1
{
public static partial class ThisClass
{
/// <summary>
/// Gets the fully qualified name of the parent class, including the namespace but not the assembly.
/// </summary>
public const string FullName = "SampleApp.NLog.Demo1";
}
}
}
// <auto-generated/>
#nullable enable
namespace SampleApp.NLog
{
namespace AnotherNamespace
{
using SomeOtherNamespace;
partial class Demo2<T> : global::SomeNamespace.SomeInterface<T> where T : global::SomeOtherNamespace.SomeOtherInterface
{
public static partial class ThisClass
{
/// <summary>
/// Gets the fully qualified name of the parent class, including the namespace but not the assembly.
/// </summary>
public const string FullName = "SampleApp.NLog.AnotherNamespace.Demo2";
}
private static global::NLog.Logger? __loggerLazy;
private static global::NLog.Logger Logger => __loggerLazy ??= global::NLog.LogManager.GetLogger(ThisClass.FullName);
}
}
}
// <auto-generated/>
#nullable enable
namespace SampleApp.NLog
{
namespace AnotherNamespace
{
using SomeOtherNamespace;
partial class Demo2<T> : global::SomeNamespace.SomeInterface<T> where T : global::SomeOtherNamespace.SomeOtherInterface
{
partial class NestedClass : global::SomeNamespace.SomeInterface<global::SomeOtherNamespace.SomeOtherInterface>
{
public static partial class ThisClass
{
/// <summary>
/// Gets the fully qualified name of the parent class, including the namespace but not the assembly.
/// </summary>
public const string FullName = "SampleApp.NLog.AnotherNamespace.Demo2.NestedClass";
}
private static readonly global::NLog.Logger Logger = global::NLog.LogManager.GetLogger(ThisClass.FullName);
}
}
}
}
About
Generate the NLog register for a class.
How to use
Example (source csproj, source files)
- CSharp Project
- Program.cs
- Person.cs
This is the CSharp Project that references NLog.Extensions.ThisClass
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NLog" Version="6.1.2" />
<PackageReference Include="NLog.Extensions.Logging" Version="6.1.2" />
<PackageReference Include="NLog.Extensions.ThisClass" Version="1.6.7" />
</ItemGroup>
<ItemGroup>
<None Update="NLog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
</Project>
This is the use of NLog.Extensions.ThisClass in Program.cs
using LogDemo;
Console.WriteLine("Hello, World!");
var person = new Person() \{ FirstName = "Andrei", LastName = "Ignat" };
Console.WriteLine(person.Name());
This is the use of NLog.Extensions.ThisClass in Person.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace LogDemo;
[ClassLoggerLazy]
partial class Person
{
public string FirstName \{ get; set; }= string.Empty;
public string LastName \{ get; set; \} = string.Empty;
public string Name()
{
Logger.Error("This is an error message from the Name method.");
return $"{FirstName} {LastName}";
}
}
Generated Files
Those are taken from $(BaseIntermediateOutputPath)\GX
- ClassLoggerAttribute.g.cs
- ClassLoggerLazyAttribute.g.cs
- Person_ClassLoggerLazy.g.cs
// <auto-generated/>
using System;
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
sealed class ClassLoggerAttribute : Attribute
{
}
// <auto-generated/>
using System;
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
sealed class ClassLoggerLazyAttribute : Attribute
{
}
// <auto-generated/>
#pragma warning disable CS0108, CS1591, CS1573, CS0465, CS0649, CS8019, CS1570, CS1584, CS1658, CS0436, CS8981
#nullable enable
namespace LogDemo;
partial class Person
{
public static partial class ThisClass
{
/// <summary>
/// Gets the fully qualified name of the parent class, including the namespace but not the assembly.
/// </summary>
public const string FullName = "LogDemo.Person";
}
private static global::NLog.Logger? __loggerLazy;
private static global::NLog.Logger Logger => __loggerLazy ??= global::NLog.LogManager.GetLogger(ThisClass.FullName);
}
Useful
Download Example (.NET C#)
Share NLog.Extensions.ThisClass
https://ignatandrei.github.io/RSCG_Examples/v2/docs/NLog.Extensions.ThisClass
Category "EnhancementClass" has the following generators:
1 ApparatusAOT
2023-04-16
2 AspectGenerator
2024-01-07
3 CommonCodeGenerator
2024-04-03
4 Comparison
2025-05-25
5 DudNet
2023-10-27
6 Enhanced.GetTypes
2024-09-17
7 FastGenericNew
2023-08-10
8 Immutype
2023-08-12
9 Ling.Audit
2023-12-12
10 Lombok.NET
2023-04-16
11 M31.FluentAPI
2023-08-25
12 MemberAccessor
2025-03-24
13 MemoryPack
2023-08-04
14 Meziantou.Polyfill
2023-10-10
15 Microsoft.Extensions.Logging
2023-04-16
16 Microsoft.Extensions.Options.Generators.OptionsValidatorGenerator
2023-11-17
17 Microsoft.Interop.JavaScript.JSImportGenerator 2023-04-16
18 NLog.Extensions.ThisClass
2026-04-03
19 OptionToStringGenerator
2024-02-15
20 Pekspro.DataAnnotationValuesExtractor
2026-02-15
21 Program
2025-11-06
22 QueryStringGenerator
2024-11-07
23 RSCG_Decorator
2023-09-30
24 RSCG_UtilityTypes
2023-12-22
25 StaticReflection
2023-10-13
26 SyncMethodGenerator
2023-08-14
27 System.Runtime.InteropServices
2023-04-16
28 System.Text.RegularExpressions
2023-04-16
29 TelemetryLogging
2023-11-30
30 ThisClass
2024-04-19