initial commit

This commit is contained in:
Matthias Heil
2026-04-04 13:30:13 +02:00
commit 6bed9b284c
186 changed files with 10650 additions and 0 deletions
@@ -0,0 +1,34 @@
using System.Collections.Generic;
namespace Microsoft.Extensions.Logging.Log4Net.AspNetCore.Entities
{
/// <summary>
/// Class to store information of a log4net xml config file node.
/// </summary>
public class NodeInfo
{
/// <summary>
/// Gets or sets the x path to find the node to override.
/// </summary>
/// <value>
/// The x path.
/// </value>
public string XPath { get; set; }
/// <summary>
/// Gets or sets the content of the node.
/// </summary>
/// <value>
/// The content of the node.
/// </value>
public string NodeContent { get; set; }
/// <summary>
/// Gets or sets the attributes.
/// </summary>
/// <value>
/// The attributes.
/// </value>
public Dictionary<string, string> Attributes { get; set; }
}
}