Removed untyped contructor from ComponentRegistration and add a protected setter.
[castle.git] / MonoRail / NewGenerator / newgenerator.build
blob3b4ea25c8dfdc5fc1e52f688f97857a0fb1e9188
1 <?xml version="1.0" encoding='iso-8859-1' ?>
2 <project
3 name="newgenerator"
4 default="build"
5 xmlns="http://nant.sf.net/release/0.85/nant.xsd">
7 <property name="root.dir" value="../.." />
8 <include buildfile="${root.dir}/common-project.xml" />
10 <fileset id="buildfiles.all">
11 <!-- Files have to be in dependency order -->
12 <include name="Castle.NewGenerator.Core/Castle.NewGenerator.Core.build" />
13 <include name="Castle.NewGenerator.CLI/Castle.NewGenerator.CLI.build" />
14 <!--
15 <include name="Castle.NewGenerator.VSNetIntegration/Castle.NewGenerator.VSNetIntegration.build" />
16 -->
17 </fileset>
19 <target name="copytemplates">
20 <mkdir dir="${build.dir}/GeneratorTemplates" />
21 <copy todir="${build.dir}/GeneratorTemplates">
22 <fileset basedir="GeneratorTemplates">
23 <include name="**/*" />
24 </fileset>
25 </copy>
26 </target>
28 <!-- TODO: Generate .config setting up templates location -->
30 <target name="build" depends="common.init common.build copytemplates" />
32 </project>