Re: [NAnt-users] NAnt Arrays

2006-04-25 Thread William_Martin
If you want an array of files (such as solution files), then the best way to do it is probably with a fileset. e.g. fileset id=solutions include name=*.sln / /fileset then use: foreach item=file property=filename in items refid=solutions / /in do whatever... / /do /foreach

[NAnt-users] Building VB6 project group

2006-04-25 Thread Rik Hemsley
Hi, I'm attempting to get NAnt to build a set of VB6 projects. So far, I have it checking out code from SourceSafe and some of the projects build successfully. The problem I have come across is this: Where projects reference other projects, I don't know how to update a project's reference to

[NAnt-users] Directory paths with spaces

2006-04-25 Thread Jay Williams
Hi, I need to call devenv directly from within my nant script, but the call wont work since there are spaces in the file path (its located in C:\Program Files\Microsoft Visual Studio 8\Common7\IDE). How do I specify for there to be double-quotes within the call? I used to just allow the

Re: [NAnt-users] Directory paths with spaces

2006-04-25 Thread William_Martin
Because you are in XML, you need to use the quote entity. Try: exec program=cmd.exe commandline=/c quot;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenvquot; ${source.code.folder}\mobilens.sln /rebuild Debug / HTH, Bill From Jay Williams [EMAIL

RE: [NAnt-users] Directory paths with spaces

2006-04-25 Thread Rod Ayers
Hi, Jay The workaround I found is to sepcifiy the parameter and the parameter value separately, as below where I split the "/out" parm: exec program="${dotnet.devenv.path}" append="false" verbose="true" arg value="/rebuild"/arg value="release"/arg value="/out"/arg

Re: [NAnt-users] Building VB6 project group

2006-04-25 Thread Rik Hemsley
On 4/25/06, Foster, Richard - PAL [EMAIL PROTECTED] wrote: Hope this helps, That's fantastic, thanks. I think this'll be a great help! Cheers, Rik --- Using Tomcat but need to do more? Need to support web services, security? Get stuff done

RE: [NAnt-users] Building VB6 project group

2006-04-25 Thread Foster, Richard - PAL
[Resending to group... Otherwise Rik's reply doesn't help anyone! :-) Basically, off-list it was determined that Rik had binary compatibility problems, and binary compatibility was (temporarily) disabled.] The problem is if you turn off binary compatibility then the GUIDs all change. You would

[NAnt-users] Building VB6 project group

2006-04-25 Thread Rik Hemsley
Sorry, I should have mentioned that, earlier in the script, I turn off binary compatibility for the project files, because otherwise I get the message unable to set the version compatible component I believed that turning off BC for the build was the way to work around this - I guess not then?

[NAnt-users] No matching build files found to run.

2006-04-25 Thread Ahmed, Shabana
Hi All, I get the following error when I try to run the build for my project : build-bin: [nant] No matching build files found to run. Has anyone encountered such an error before? Please let me know at your convenience. Thanks, Shabana

[NAnt-users] Regasm.exe error on build of a project with a web reference

2006-04-25 Thread Stephen Tunney
Im having a problem with a project where the regasm.exe exec under the solution task is throwing the same error as described below (error code 100). My assembly contains a web reference, and I can not regenerate the wsdl reference code since there have been customizations in this code