Re: [NAnt-users] 1.1 and 2.0 in same build

2007-02-08 Thread Karl Palsson
I do this, I have a couple of projects where I want to force the version. I've not tried doing multiple different frameworks at once though, it tended to be a fire and forget, to make sure different machines with different default frameworks worked ok. Cheers, Karl P > -Original Message--

Re: [NAnt-users] ASP.NET Deployment Package via NAnt

2006-12-04 Thread Karl Palsson
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Gary Feldman > Sent: Monday, December 04, 2006 3:35 PM > To: nant-users@lists.sourceforge.net > Subject: Re: [NAnt-users] ASP.NET Deployment Package via NAnt > > Simon Whittemore wrote: > > I am

Re: [NAnt-users] Bug with filterchains and BOM?

2006-11-16 Thread Karl Palsson
[EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Karl Palsson > Sent: Wednesday, November 15, 2006 1:06 PM > To: nant-users@lists.sourceforge.net > Subject: [NAnt-users] Bug with filterchains and BOM? > > > Hi, > > I'm using copy and filterchains to ge

[NAnt-users] Bug with filterchains and BOM?

2006-11-15 Thread Karl Palsson
Hi, I'm using copy and filterchains to generate stub project layouts for visual studio. VisualStudio 2005, solution files start with the BOM, 0xefbbbf, and if the BOM's not there, visual studio ignores the file (unhelpful!) My task looks like this...

Re: [NAnt-users] [Ccnet-user] Looking for a NANTContrib - VSS equivalent VSTS task

2006-09-12 Thread Karl Palsson
I would suggest that if you've moved from vss to vsts, you should perhaps rexamine your scm usage. Just because you did it in vss doesn't mean it's a good idea with vsts. Despite being rather a lock in product, it does have _substantial_ improvements in allowed workflows. I mean, what on earth

Re: [NAnt-users] solution task: targets v.s. configuration

2006-09-06 Thread Karl Palsson
I personally much prefer to have a property in the build file saying whether I'm in debug or release mode. Then I have just three targets in my nant build file, and it's easier to read. Then, in cc.net or wherever, I just call it once in debug mode and once in release mode, I find that a lot mo

Re: [NAnt-users] cvs-update fails with no args; -P option not supported

2006-09-06 Thread Karl Palsson
According to the rc4 documentation, unless you specify a path, it will try and find cvs in your path. So it looks like your cvs binary doesn't support the -P flag, (perhaps it does it by default, which is how I think it definitely should be) If you want to use the built in cvs implementation, yo

Re: [NAnt-users] Synchronizing Visual Studio projects to NAnt build

2006-07-17 Thread Karl Palsson
> > This would remove one of the major advantages that NAnt has over > > VS2003, namely it can build the solution much more rapidly than VS. > Can you elaborate on "rapidly" ? I don't see any particular > speed advantage here. I don't either, and it's certainly not one of the reasons I'm using n

Re: [NAnt-users] solution task vs msbuild and exec, vs2003 vs vs2005

2006-06-30 Thread Karl Palsson
name="Subtext.Web.Controls\Subtext.Web.Controls.csproj" /> > > > > > > Is it possibile to do the same using the exec external task > with MSBuild? > > Simo > > ----- > Simone Chiaretta &

Re: [NAnt-users] Ifnot deprecated, having a few hard times with replacements....

2006-06-09 Thread Karl Palsson
oying. The workaround of course, is... mailto:[EMAIL PROTECTED] > Sent: Friday, June 09, 2006 12:53 PM > To: Karl Palsson; nant-users@lists.sourceforge.net > Subject: RE: [NAnt-users] Ifnot deprecated,having a few hard > times with replacements > > Karl, > > Ah! Sorry, I

Re: [NAnt-users] Ifnot deprecated, having a few hard times with replacements....

2006-06-09 Thread Karl Palsson
> I would expect this to be the operation... After all you are > testing for the existence of 'CCNetLabel', not > 'CCNetProject'. All this suggests to me is that you *do* have > a CCNetLabel... Perhaps you should be using that to set your > value instead? I know I'm testing for the existence o

[NAnt-users] Ifnot deprecated, having a few hard times with replacements....

2006-06-08 Thread Karl Palsson
Hi, ifnot is now deprecated in rc4, so I'm trying to port things over to the new way This fails. CCNetProject is not defined. I know it's not defined, that's why it's only meant to do this if the "IF" is true. Is this really the intended behaviour? Shouldn't the if be getting evaluate

RE: [NAnt-users] NANT taking longer than the standard IDE compile? What's up?

2006-05-24 Thread Karl Palsson
Don't suppose anyone could expect an actual new release? We're about at the point of just saying, "the nightly from March XX, 2006" is the new company standard. The list is active, the committers are active, what are we missing? > -Original Message- > From: [EMAIL PROTECTED] > [mailt

RE: [NAnt-users] task issue

2006-05-04 Thread Karl Palsson
My nant (.85rc3) complains about the deployment projects too, but it doesn't actually stop compiling or anything like that. It's a warning, and it just skips them. Reminding you that one day, it might be nice to make that work. I use the task for building all the code, then use exec to call de

RE: [NAnt-users] VBC race condition when compiling many source files??

2006-02-02 Thread Karl Palsson
This isn't nant specific, this is a .net framework problem. I've had similar problems even just building things in Visual studio. Shorter namespaces helps, but other than that, it's just a sucky problem with no real solution. I'm afraid I can't find the link where this was explained in more

RE: [NAnt-users] .NET 2.0 release compatibility

2006-01-08 Thread Karl Palsson
Some might say that if the nightlies are worth using, why aren't they 0.86 or something? Some people like to use a known released version so that every single person in their team, and their colleagues can be using the same tools, rather than "Oh, my view is synced to 12:45 on the 16th, maybe

[NAnt-users] Getting -projecthelp by default?

2005-12-19 Thread Karl Palsson
Hi, does anyone know a way to get the -projecthelp output displayed by default? I can set a default target for a project, but I want that target to be showing the output of -projecthelp, and having it fire up another instance of nant to do so just feels wrong. Yech! Cheers,