Hi all, I'm new to nant but can see I'll be using it a lot in the future...!
My problem is this...
- I have a C# VS.NET solution ("MetaViewer") which relies on a library dll called 'Petrolog.Library.dll' which is located in another directory.
- When I build MetaViewer inside VS.NET, it automatically copies this referenced dll into the debug\bin output directory.
- But when I build it with nant, this reference dll isn't copied even though it reports 'build succeeded'. Nant creates the new MetaViewer.exe application, which fails to run because the Petrolog.Library.dll file is missing from the output directory.
Am I doing something wrong here?
Thanks in advance,
Harvey Green
----------------------------------------------------
<?xml version="1.0"?>
<project name="MetaViewer" default="build">
<target name="clean" description="Remove all generated files">
<delete verbose="true" failonerror="false">
<fileset basedir=".">
<includes name="MetaViewer\bin\debug\*.dll"/>
<includes name="MetaViewer\bin\debug\*.pdb"/>
<includes name="MetaViewer\bin\debug\*.xml"/>
<includes name="MetaViewer\obj\debug\**"/>
</fileset>
</delete>
</target><target name="build" description="MetaViewer Debug Build">
<solution configuration="Debug" solutionfile="MetaViewer\MetaViewer.sln" verbose="true">
<referenceprojects>
<includes name="Petrolog.Library\Petrolog.Library.csproj" />
</referenceprojects>
</solution>
</target>
<target name="backup" description="Create MetaViewer Source Backup">
<zip zipfile="Backups\MetaViewer.zip" verbose="true">
<fileset basedir=".">
<includes name="MetaViewer\**"/>
</fileset>
</zip>
</target>
</project>
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
