[NAnt-users] loadnanttasks cannot load x86-Dlls anymore

2012-05-30 Thread Chris
Hey, i've started converting a .Net 3.5 softwareproject to .Net 4.0. In the same time i replaced nant 0.85 with the new nant 0.92rc1. The project is build using msbuild with the target-platform 'x86'. We have some nant-tasks which are also build with this configuration. After upgrading to the new

[NAnt-users] Help copying a folder structure

2012-05-30 Thread Chris Fouts
I looked at this http://nant.sourceforge.net/nightly/latest/help/tasks/copy.html, and googled some. I want to copy files from ${srcDir} to ${destDir} and preserve the directory struncture. I tried this, but the directory structure is NOT preserved in ${destDir}. Any clues? copy

Re: [NAnt-users] Help copying a folder structure

2012-05-30 Thread Chris Fouts
This way... copy todir=${srcDir} fileset basedir=${destDir} include name=**\* / /fileset /copy From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Wednesday, May 30, 2012 3:13 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Help copying a folder structure I

Re: [NAnt-users] Help copying a folder structure

2012-05-30 Thread Ryan Boggs
Hey Chris, What version of NAnt are you using? Thanks, Ryan On May 30, 2012, at 12:39 PM, Chris Fouts chris.fo...@caemilusa.com wrote: This way… copy todir=${srcDir} fileset basedir=”${destDir} include name=**\* / /fileset /copy From: Chris Fouts