92 lines
3.2 KiB
XML
Executable File
92 lines
3.2 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<configSections>
|
|
<section name="xslFiles" type="ThoughtWorks.CruiseControl.Core.Config.XslFilesSectionHandler,ThoughtWorks.CruiseControl.Core"/>
|
|
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
|
|
</configSections>
|
|
<!-- Specifies the stylesheets that are used to transform the build results when using the EmailPublisher -->
|
|
<xslFiles>
|
|
<file name="xsl\header.xsl"/>
|
|
<file name="xsl\pedpics.xsl"/>
|
|
<file name="xsl\assetbuilder.xsl"/>
|
|
<file name="xsl\compile.xsl"/>
|
|
<file name="xsl\unittests.xsl"/>
|
|
<file name="xsl\fit.xsl"/>
|
|
<file name="xsl\modifications.xsl"/>
|
|
<file name="xsl\fxcop-summary.xsl"/>
|
|
<file name="xsl\compile-msbuild.xsl"/>
|
|
</xslFiles>
|
|
<!-- Defines the port and protocol that the ccnet server will use to service remote requests -->
|
|
<system.runtime.remoting>
|
|
<application>
|
|
<channels>
|
|
<channel ref="tcp" port="21234">
|
|
<serverProviders>
|
|
<formatter ref="binary" typeFilterLevel="Full"/>
|
|
</serverProviders>
|
|
</channel>
|
|
</channels>
|
|
</application>
|
|
</system.runtime.remoting>
|
|
<appSettings>
|
|
<add key="ServerLogFilePath" value="ccnet.log"/>
|
|
<!-- Used by the WebDashboard ServerLog plugin to locate the log file produced by the LogFileTraceListener (above) -->
|
|
<add key="ServerLogFileLines" value="100"/>
|
|
<!-- Used by the WebDashboard ServerLog plugin to determine how many lines from the log file should be read -->
|
|
<add key="WatchConfigFile" value="true"/>
|
|
<!-- Turns on or off the file watcher used to monitor the ccnet.config file -->
|
|
</appSettings>
|
|
<startup>
|
|
<supportedRuntime version="v2.0.50727" />
|
|
</startup>
|
|
<log4net>
|
|
<root>
|
|
<!--
|
|
Change the value in the next line to alter the amount of logging generated by CruiseControl.NET.
|
|
The following values are supported: DEBUG, INFO, WARN, ERROR, OFF.
|
|
For more detailed information on how to configure log4net, see http://logging.apache.org/log4net/
|
|
-->
|
|
<level value="DEBUG"/>
|
|
<appender-ref ref="Console"/>
|
|
<appender-ref ref="RollingFileAppender"/>
|
|
</root>
|
|
<appender name="Console" type="log4net.Appender.ColoredConsoleAppender">
|
|
<mapping>
|
|
<level value="ERROR"/>
|
|
<foreColor value="White" />
|
|
<backColor value="Red, HighIntensity" />
|
|
</mapping>
|
|
|
|
<mapping>
|
|
<level value="DEBUG" />
|
|
<foreColor value="Green" />
|
|
</mapping>
|
|
|
|
<mapping>
|
|
<level value="INFO" />
|
|
<foreColor value="White" />
|
|
</mapping>
|
|
|
|
<mapping>
|
|
<level value="WARN" />
|
|
<foreColor value="Yellow" />
|
|
</mapping>
|
|
|
|
<layout type="log4net.Layout.PatternLayout">
|
|
<conversionPattern value="[%thread:%level] %message%newline"/>
|
|
</layout>
|
|
</appender>
|
|
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
|
|
<file value="ccnet.log"/>
|
|
<appendToFile value="true"/>
|
|
<rollingStyle value="Size"/>
|
|
<maxSizeRollBackups value="10"/>
|
|
<maximumFileSize value="10MB"/>
|
|
<staticLogFileName value="true"/>
|
|
<layout type="log4net.Layout.PatternLayout">
|
|
<conversionPattern value="%date [%thread:%level] %message%newline"/>
|
|
</layout>
|
|
</appender>
|
|
</log4net>
|
|
</configuration>
|