- fixed a lot of issues with the build system - added PlatformSystems to the build - fixed some project files (missing using statements) - added PlatformSystems to the msi installer - fixed some issues in the msi installer - updated WIX to version 3.6RC (to support VS2012) WIX v3.6RC is not included in the svn repository. If you want to build a msi installer yourself you have to install it. I added the link to the wix installer package to the documentation.
19 lines
508 B
Plaintext
19 lines
508 B
Plaintext
<log4net>
|
|
<!-- A1 is set to be a ConsoleAppender -->
|
|
<appender name="A1" type="log4net.Appender.ConsoleAppender">
|
|
|
|
<!-- A1 uses PatternLayout -->
|
|
<layout type="log4net.Layout.PatternLayout">
|
|
<!-- Print the date in ISO 8601 format -->
|
|
<conversionPattern value="%-5level %logger - %message%newline" />
|
|
</layout>
|
|
</appender>
|
|
|
|
<!-- Set root logger level to DEBUG and its only appender to A1 -->
|
|
<root>
|
|
<level value="Info" />
|
|
<appender-ref ref="A1" />
|
|
</root>
|
|
|
|
</log4net>
|