This commit introduces the AppDiagnostic project structure, including core components like `MainForm`, logging utilities (`LogAdapter`, `LogFilter`), and configuration files. It integrates with `log4net` for logging and uses `SharedComponents` for shared utilities.
18 lines
663 B
XML
18 lines
663 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
|
</startup>
|
|
<log4net>
|
|
<appender name="LogCacheAppender" type="Namespace.LogCacheAppender, AssemblyName">
|
|
<param name="Cache" value="YourCacheInstance" />
|
|
<layout type="log4net.Layout.PatternLayout">
|
|
<param name="ConversionPattern" value="%d [%t] %-5p %c - %m%n" />
|
|
</layout>
|
|
</appender>
|
|
<root>
|
|
<level value="DEBUG" />
|
|
<appender-ref ref="LogCacheAppender" />
|
|
</root>
|
|
</log4net>
|
|
</configuration> |