nicko 2004/01/28 12:39:12
Added: examples nant.build nant.config
examples/net nant.build nant.config
examples/netcf nant.build nant.config
examples/sscli nant.build nant.config
Log:
Initial checkin
Revision Changes Path
1.1 logging-log4net/examples/nant.build
Index: nant.build
===================================================================
<?xml version="1.0" ?>
<project name="examples" default="compile"
xmlnds="http://tempuri.org/nant-vs.xsd">
<target name="compile" description="Builds examples">
<nant buildfile="mono/nant.build" target="compile" />
<nant buildfile="net/nant.build" target="compile" />
<nant buildfile="netcf/nant.build" target="compile" />
<nant buildfile="sscli/nant.build" target="compile" />
</target>
<target name="update-version-info" description="Updates the
AssemblyVersionInfo.cs of the examples">
<nant buildfile="net/nant.build" target="update-version-info" />
</target>
</project>
1.1 logging-log4net/examples/nant.config
Index: nant.config
===================================================================
<?xml version="1.0" ?>
<project name="examples-configuration"
xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- Set build configuration -->
<property name="project.build.config" value="debug" readonly="false" />
</project>
1.1 logging-log4net/examples/net/nant.build
Index: nant.build
===================================================================
<?xml version="1.0" ?>
<project name="net-examples" default="compile"
xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- compile .NET Framework examples -->
<target name="compile" description="Builds .NET Framework examples">
<nant buildfile="1.0/nant.build" target="compile" />
<nant buildfile="1.1/nant.build" target="compile" />
</target>
<!-- update the version of .NET Framework examples -->
<target name="update-version-info" description="Update
AssemblyVersionInfo of .NET Framework examples">
<nant buildfile="1.0/nant.build" target="update-version-info" />
</target>
</project>
1.1 logging-log4net/examples/net/nant.config
Index: nant.config
===================================================================
<?xml version="1.0" ?>
<project name="net-configuration" xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- Include parent configuration file -->
<include buildfile="../nant.config" />
<!-- Set runtime configuration -->
<property name="project.runtime.config" value="net" readonly="false" />
</project>
1.1 logging-log4net/examples/netcf/nant.build
Index: nant.build
===================================================================
<?xml version="1.0" ?>
<project name="netcf-examples" default="compile"
xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- compile .NET Compact Framework examples -->
<target name="compile" description="Builds .NET Compact Framework
examples">
<nant buildfile="1.0/nant.build" target="compile" />
</target>
</project>
1.1 logging-log4net/examples/netcf/nant.config
Index: nant.config
===================================================================
<?xml version="1.0" ?>
<project name="netcf-configuration" xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- Include parent configuration file -->
<include buildfile="../nant.config" />
<!-- Set runtime configuration -->
<property name="project.runtime.config" value="netcf" readonly="false" />
</project>
1.1 logging-log4net/examples/sscli/nant.build
Index: nant.build
===================================================================
<?xml version="1.0" ?>
<project name="netcf-examples" default="compile"
xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- compile Shared Source CLI examples -->
<target name="compile" description="Builds Shared Source CLI examples">
<nant buildfile="1.0/nant.build" target="compile" />
</target>
</project>
1.1 logging-log4net/examples/sscli/nant.config
Index: nant.config
===================================================================
<?xml version="1.0" ?>
<project name="sscli-configuration" xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- Include parent configuration file -->
<include buildfile="../nant.config" />
<!-- Set runtime configuration -->
<property name="project.runtime.config" value="sscli" readonly="false" />
</project>