Re: [NAnt-users] Problem using regasm task

2006-08-29 Thread Bonio Lopez
Hi, Do you use any firewall software? Sometimes it blocks attempt of one app to launch other one. May be try to write a simple .NET app Process.Start(path\regasm.exe) and see what happens. HIH PS. I can use regasm task without problems From: Carl Malikowski [mailto:[EMAIL PROTECTED] Sent:

Re: [NAnt-users] Problem using regasm task

2006-08-29 Thread Carl Malikowski
Thanks to both you and Gert for responding, but no luck .I modified the Nant.exe.config file and changed the default to an explicit value: It was: I tried:  And also:      I double checked to make sure what the current framework was set to before calling the regasm(I echoed the valu

Re: [NAnt-users] Problem using regasm task

2006-08-29 Thread Bonio Lopez
Hi, You could try to set CLR version explicitely: Check that you have regasm in that (or default) clr version. HIH, Boni From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl MalikowskiSent: Dienstag, 29. August 2006 19:22To: nant-users@lists.sourceforge.netSubject: [NAnt-u

[NAnt-users] need help with compilation of WebService project using NAnt

2006-08-29 Thread mandar ambre
Hi Everyone, I am new to this group.I have started working on NAnt recently and I have been facing some issues.I have web reference to a main project(which is basically a webservice hosted on my local computer as well.) Following is the build script I have:

[NAnt-users] Problem using regasm task

2006-08-29 Thread Carl Malikowski
Hi, I’m looking a bit of help in trying to troubleshoot a problem. We are using 0.85 rc-3. I’d like to be able to use regasm from nantcontrib or call regasm using the exec task.       Regardless whether its lo

[NAnt-users] Can't compile assembly when referencing another assembly

2006-08-29 Thread Payne, Matt
Title: Can't compile assembly when referencing another assembly Hi, I can't seem to get this to work: - The init target does exist and is working - The property build.dir is defined and the build directory does exist I think I've just go some incorrect syntax somewhere in here:    

Re: [NAnt-users] Compiling large project using NAnt

2006-08-29 Thread Bradley Ward
Title: Compiling large project using NAnt Matt,   We do a large build consisting of about the same number of individual projects as you mention (class libraries, communication libraries, windows forms applications, background service applications, and asp.net applications (web services an

[NAnt-users] Compiling large project using NAnt

2006-08-29 Thread Payne, Matt
Title: Compiling large project using NAnt Hi, I'm looking for a bit of advice about how best to go about compiling a large VB.Net solution that contains 15 class library projects and one ASP.Net project. Most of the 15 libraries are interdependent to some degree. I don't see a whole lot

Re: [NAnt-users] Conditional looping within a NAnt script (is there a'while' task?)

2006-08-29 Thread Noel Gifford
I think that the 'foreach' task would be closer to what you are looking for. It would probably be easier to implement the 'while' task starting from 'foreach'. Noel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Lambrou Sent: Tuesday, August 29, 20

[NAnt-users] Conditional looping within a NAnt script (is there a 'while' task?)

2006-08-29 Thread Chris Lambrou
Hello all, I'm looking for a way to perform conditional loops in a Nant script. Essentially, I'd like to repeat a section of script whilst a condition remains true. Nant doesn't appear to have any tasks or other script elements that support this behaviour, so I thought I'd try to implement my own