Re: [NAnt-users] Visual Studio projects

2007-02-08 Thread si
> thanks. Great tool. Just like the good old eclipse ant integration (almost). > But still the intellisense in build files does not work for me. I've done > everything as describes in the faq but it does not show up with Intellisense > at all. Any ideas? Assuming NAnt 0.85 and Visual Studio 2005

[NAnt-users] Visual Build Pro Question

2007-02-08 Thread Rick G. Garibay
I am a NANT veteran of about 2 years and recently have come across Visual Build Pro as a tool option. Aside from knowing that VBP is a GUI-driven tool, can anyone lend some insight on this product, drawing comparisons where relevant? Thanks, Rick --

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

2007-02-08 Thread Eric Fetzer
I'm trying: - Original Message From: Eric Fetzer <[EMAIL PROTECTED]> To: Eric Fetzer <[EMAIL PROTECTED]>; Bob Archer <[EMAIL PROTECTED]>; Nant Users Sent: Thursday, February 8, 2007 10:10:51 AM Subject: Re: [NAnt-users] 1.1 and 2.0 in same build It doesn't even look like you can s

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

2007-02-08 Thread Bob Archer
Try: If that doesn't work you can use the exec task to call nant with the -t: command line parameter. Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Thursday, February 08, 2007 12:11 PM To: Er

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] 1.1 and 2.0 in same build

2007-02-08 Thread Eric Fetzer
It doesn't even look like you can specify the -t using the task. This is rough! Any help? That means the only way I could do this is to call the buildfile with -t:net-1.1 and then call a separate build file for the 2005 stuff with 2.0 as the default. Unless my -t is inherited. - Orig

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

2007-02-08 Thread Bob Archer
No, It wouldn't, it would only force you to use different command lines... Nant -f:mybuild.build -t:net-2.0 Nant -f:mybuild.build -t:net-1.1 But, I think you can also set the property in the build file: BOb -Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Thursd

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

2007-02-08 Thread Eric Fetzer
This would force me to have different build files for each. I was looking for something inline. For example: - Original Message From: Bob Archer <[EMAIL PROTECTED]> To: Eric Fetzer <[EMAIL PROTECTED]>; Nant Users Sent: Thursday, February 8, 2007 10:02:04 AM Subject:

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

2007-02-08 Thread Eric Fetzer
With the nightly builds you can, works like a charm! Eric <>< - Original Message From: Erich Eichinger <[EMAIL PROTECTED]> To: Eric Fetzer <[EMAIL PROTECTED]>; Nant Users Sent: Thursday, February 8, 2007 10:00:52 AM Subject: RE: [NAnt-users] 1.1 and 2.0 in same build Hi, you can't b

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

2007-02-08 Thread Bob Archer
You can use the -t: command line parameter to specify the framework version to target. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Thursday, February 08, 2007 11:54 AM To: Nant Users Subject: [NAnt-users] 1.1 and 2.0 in same bui

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

2007-02-08 Thread Erich Eichinger
Hi, you can't build vs2005 using a task. You must use the task from the nant.contrib project. if you just want to change the current target framework and use for compiling your sources, you can do that by setting the "nant.settings.currentframework" property: for valid values se

[NAnt-users] 1.1 and 2.0 in same build

2007-02-08 Thread Eric Fetzer
I need to be able to build both VS2005 and VS2003 built projects in the same build. In other words, how can I tell to target which framework from inside a build script? Thanks - Eric Don't get soaked. Tak

Re: [NAnt-users] Generating NDoc documentation erro

2007-02-08 Thread Evans, Jonathan (2)
Are you using .NET 2.0? If so, the problem could well be because NDoc doesn't support .NET 2.0. There are some builds around that have been adapted, but the project is now unmaintained and doesn't look as if it is getting any new development.. Have a look at Sandcastle (from Microsoft) for an

Re: [NAnt-users] Generating NDoc documentation erro

2007-02-08 Thread Filip Polsakiewicz
Hi, would it help to remove Log4Net from my GAC? Thanks, Filip 2007/2/8, Daniel Blendea <[EMAIL PROTECTED]>: On 2/8/07, Filip Polsakiewicz <[EMAIL PROTECTED]> wrote: > Hi, > > as always when starting new things i fell over another problem. When trying > to generate the NDoc documentation fo

Re: [NAnt-users] Visual Studio projects

2007-02-08 Thread Filip Polsakiewicz
Hi, thanks. Great tool. Just like the good old eclipse ant integration (almost). But still the intellisense in build files does not work for me. I've done everything as describes in the faq but it does not show up with Intellisense at all. Any ideas? Thanks, Filip 2007/2/8, Erich Eichinger <[

[NAnt-users] Generating NDoc documentation erro

2007-02-08 Thread Filip Polsakiewicz
Hi, as always when starting new things i fell over another problem. When trying to generate the NDoc documentation for my assembly I get the following error: Error building documentation. Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d42611582

Re: [NAnt-users] Visual Studio projects

2007-02-08 Thread Erich Eichinger
Hi, for VS2005 there is a nice tool similar to nantrunner called "NAntAddin" at sourceforge: http://sourceforge.net/projects/nantaddin Since the sourceforge version has some small bugs, I created my own version which you can fínd at http://opensource.atlassian.com/confluence/spring/display

Re: [NAnt-users] Visual Studio projects

2007-02-08 Thread Filip Polsakiewicz
Hi, thank you very much. This solves one of my problems already :) 2007/2/8, Adrian Lazea <[EMAIL PROTECTED]>: Hi Filip, Filip Polsakiewicz wrote: > Hi all, > > after beeing frustrated by the way VS handles its projects I decided to > go for NAnt (since I knew ant from my Java experiences b

Re: [NAnt-users] Visual Studio projects

2007-02-08 Thread Adrian Lazea
Hi Filip, Filip Polsakiewicz wrote: > Hi all, > > after beeing frustrated by the way VS handles its projects I decided to > go for NAnt (since I knew ant from my Java experiences before). Now my > only Problem is that we are still using Visual Studio to create our > code. So here's my questi

[NAnt-users] Visual Studio projects

2007-02-08 Thread Filip Polsakiewicz
Hi all, after beeing frustrated by the way VS handles its projects I decided to go for NAnt (since I knew ant from my Java experiences before). Now my only Problem is that we are still using Visual Studio to create our code. So here's my questions: 1. Is there any kind of useful VS integration f