nant.exe.config
来自「c#源代码」· CONFIG 代码 · 共 323 行 · 第 1/2 页
CONFIG
323 行
</tasks>
</framework>
<framework name="mono-1.0" description="GNOME projects port of the .NET Framework" version="${version}"
runtimeengine="mono.exe" sdkdirectory="${sdkInstallRoot}\bin" frameworkdirectory="${sdkInstallRoot}\bin"
frameworkassemblydirectory="${frameworkAssemblyDirectory}">
<properties>
<property name="version" value="0.28" />
<property name="sdkInstallRoot" useregistry="true" regkey="SOFTWARE\Mono\${version}" regvalue="SdkInstallRoot" />
<property name="frameworkAssemblyDirectory" useregistry="true" regkey="SOFTWARE\Mono\${version}" regvalue="FrameworkAssemblyDirectory" />
<property name="configDir" useregistry="true" regkey="SOFTWARE\Mono\${version}" regvalue="MonoConfigDir" />
</properties>
<environment>
<env name="PATH" path="${frameworkAssemblyDirectory};%PATH%" />
<env name="MONO_BASEPATH" path="${sdkInstallRoot};%MONO_BASEPATH%" />
<env name="MONO_PATH" path="${frameworkAssemblyDirectory};%MONO_PATH%" />
<env name="MONO_CFG_DIR" path="${configDir};%MONO_CFG_DIR%" />
</environment>
<tasks>
<task name="csc">
<attribute name="exename">mcs</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
<task name="vbc">
<attribute name="exename">mbas</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
<task name="resgen">
<attribute name="exename">monoresgen</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
<task name="delay-sign">
<attribute name="exename">monosn</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
</tasks>
</framework>
<framework name="sscli-1.0" description="Microsoft Shared Source CLI 1.0" version="${version}"
runtimeengine="clix.exe" sdkdirectory="C:\sscli\build\v1.x86fstchk.rotor\sdk\bin" frameworkdirectory="C:\sscli\build\v1.x86fstchk.rotor"
frameworkassemblydirectory="C:\sscli\build\v1.x86fstchk.rotor">
<properties>
<property name="version" value="1.0.0000" />
</properties>
<tasks>
<task name="csc">
<attribute name="exename">csc</attribute>
<attribute name="useruntimeengine">false</attribute>
</task>
<task name="jsc">
<attribute name="exename">jsc</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
<task name="resgen">
<attribute name="exename">resgen</attribute>
<attribute name="useruntimeengine">false</attribute>
</task>
<task name="al">
<attribute name="exename">al</attribute>
<attribute name="useruntimeengine">false</attribute>
</task>
<task name="delay-sign">
<attribute name="exename">sn</attribute>
<attribute name="useruntimeengine">false</attribute>
</task>
</tasks>
</framework>
</platform>
<platform name="unix" default="mono-1.0">
<framework name="mono-1.0" description="GNOME projects port of the .NET Framework" version="${version}"
runtimeengine="mono" sdkdirectory="/usr/local/bin" frameworkdirectory="/usr/local/bin"
frameworkassemblydirectory="/usr/local/lib">
<properties>
<property name="version" value="0.28" />
</properties>
<tasks>
<task name="csc">
<attribute name="exename">mcs</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
<task name="vbc">
<attribute name="exename">mbas</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
<task name="resgen">
<attribute name="exename">monoresgen</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
<task name="delay-sign">
<attribute name="exename">monosn</attribute>
<attribute name="useruntimeengine">true</attribute>
</task>
</tasks>
</framework>
</platform>
<!-- Framework-neutral properties -->
<properties>
<!-- <property name="foo" value = "bar" /> -->
</properties>
<!-- Framework-neutral task configuration defaults -->
<tasks>
<!-- settings for individual tasks -->
</tasks>
</frameworks>
<!-- Default properties -->
<properties>
<!-- add global properties here in the following format-->
<!-- <property name="foo" value = "bar" readonly="false" /> -->
</properties>
</nant>
<!--
This section contains the log4net configuration settings.
By default, no messages will be logged to the log4net logging infrastructure.
To enable the internal logging, set the threshold attribute on the log4net element
to "ALL".
When internal logging is enabled, internal messages will be written to the
console.
-->
<log4net threshold="OFF">
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="[%c{2}:%m - [%x] <%X{auth}>]%n" />
</layout>
</appender>
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
<param name="File" value="${APPDATA}\\NAnt\\NAnt.log" />
<param name="AppendToFile" value="true" />
<param name="MaxSizeRollBackups" value="2" />
<param name="MaximumFileSize" value="500KB" />
<param name="RollingStyle" value="Size" />
<param name="StaticLogFileName" value="true" />
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="[%c{2}:%m - [%x] <%X{auth}>]%n" />
</layout>
</appender>
<!-- Setup the root category, add the appenders and set the default level -->
<root>
<!-- Only log messages with severity ERROR (or higher) -->
<level value="ERROR" />
<!-- Log messages to the console -->
<appender-ref ref="ConsoleAppender" />
<!-- Uncomment the next line to enable logging messages to the NAnt.log file -->
<!-- <appender-ref ref="RollingLogFileAppender" /> -->
</root>
<!-- Specify the priority for some specific categories -->
<!--
<logger name="NAnt.Core.TaskBuilderCollection">
<level value="DEBUG" />
</logger>
<logger name="NAnt">
<level value="INFO" />
</logger>
-->
</log4net>
<startup>
<supportedRuntime version="v1.1.4322" />
<supportedRuntime version="v1.0.3705" />
</startup>
</configuration>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?