The nant build file for this project was not compiling as exe and did not embed the log4net config files. I have fixed both problems.
-- john bragança bravia web design 310.327.9166 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Rhino Tools Dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rhino-tools-dev?hl=en -~----------~----~----~----~------~----~------~--~---
<?xml version="1.0" encoding='iso-8859-1' ?> <project name="Rhino.Etl.Cmd" default="build" xmlns="http://nant.sf.net/release/0.85/nant.xsd" > <property overwrite="false" name="assembly.is-cls-compliant" value="false" /> <property name="root.dir" value="../.." /> <include buildfile="${root.dir}/common-project.xml" /> <target name="init" depends="common.init"> <property name="assembly.version" value="1.0.0.0" /> <property name="assembly.description" value="Rhino ETL - Developer oriented ETL tool" /> <assemblyfileset id="project.references" basedir="${build.dir}"> <include name="System.dll" /> <include name="System.Data.dll" /> <include name="System.Data.SqlClient.dll" /> <include name="log4net.dll" /> <include name="Rhino.Commons.Clr.dll" /> <include name="Rhino.Commons.dll" /> <include name="Rhino.DSL.dll" /> <include name="Rhino.Etl.Core.dll" /> <include name="Rhino.Etl.Dsl.dll" /> <include name="Boo.Lang.dll" /> <include name="Boo.Lang.Useful.dll" /> <include name="Boo.Lang.Extensions.dll" /> <include name="Boo.Lang.Compiler.dll" /> <include name="Boo.Lang.Parser.dll" /> <include name="FileHelpers.dll" /> </assemblyfileset> <resourcefileset id="project.resources" prefix="Rhino.Etl.Cmd"> <include name="*.log4net.config" /> </resourcefileset> </target> <target name="generate-assemblyinfo" depends="init common.generate-assemblyinfo" /> <target name="build" description="Build ${project::get-name()}" depends="generate-assemblyinfo common.compile-exe" /> </project>
