Re: [NAnt-users] windows application won't start after compilation

2006-08-01 Thread Gert Driesen
- Original Message - From: Rico Schaepe [EMAIL PROTECTED] To: Gary Feldman [EMAIL PROTECTED]; nant-users@lists.sourceforge.net Sent: Tuesday, August 01, 2006 6:54 AM Subject: Re: [NAnt-users] windows application won't start after compilation Do you have the .Net 2.0 SDK installed?

[NAnt-users] ndoc task doesn't create source documentation

2006-08-01 Thread Rico Schaepe
Hi all, I have put an ndoc task to my build file but Ive missing all code documentation. The class structure was build but thats all. When I run the same from NDoc Gui itself and select the created program version from Visual .Net it works well. I achieve the same (missing

Re: [NAnt-users] windows application won't start after compilation

2006-08-01 Thread Rico Schaepe
Are you sure you've installed the SDK, not just the redistributable ? Try running NAnt in verbose (NAnt.exe -verbose ...) or debug mode (NAnt.exe -debug ...)to get more information as to why the .NET Framework 2.0 could not be found. Following output I've got with -verbose: build:

Re: [NAnt-users] ndoc task doesn't create source documentation

2006-08-01 Thread Gert Driesen
Rico, The slashdoc file should be in the same directory as the assembly (${base.dir}/Carat.xml = ${build.dir}/${filename}) ? Gert - Original Message - From: Rico Schaepe [EMAIL PROTECTED] To: nant-users@lists.sourceforge.net Sent: Tuesday, August 01, 2006 8:53 AM Subject: [NAnt-users]

Re: [NAnt-users] windows application won't start after compilation

2006-08-01 Thread Gert Driesen
Rico, We actually need the verbose output that you get when NAnt is initializing it's framework configuration. This is done at startup. Gert - Original Message - From: Rico Schaepe [EMAIL PROTECTED] To: Gert Driesen [EMAIL PROTECTED]; nant-users@lists.sourceforge.net Sent: Tuesday,

Re: [NAnt-users] ndoc task doesn't create source documentation

2006-08-01 Thread Rico Schaepe
Hi Gert, The slashdoc file should be in the same directory as the assembly (${base.dir}/Carat.xml = ${build.dir}/${filename}) ? Now it works. Thanks a lot. Rico - Take Surveys. Earn Cash. Influence the Future of IT

Re: [NAnt-users] windows application won't start after compilation

2006-08-01 Thread Rico Schaepe
Gert, We actually need the verbose output that you get when NAnt is initializing it's framework configuration. This is done at startup. How can I get that information? I've done following: nant -t:net-2.0 -verbose and the output looks as follows: NAnt 0.85 (Build 0.85.2344.0; rc4;

[NAnt-users] Bug in setting of nant .net version

2006-08-01 Thread Bonio Lopez
Hi, Following code prints version 1.1 on my PC and ignores overwrite=false. I use nant 0.85 rc4 on windows Regards, Boni project property name=nant.settings.currentframework value=net-2.0/ property name=nant.settings.currentframework value=net-1.1 overwrite=false/

[NAnt-users] How to use ms_build task of nantcontrib

2006-08-01 Thread Bonio Lopez
Hi, I am trying to use ms_build task from nant contrib. What I need is to compile a configuration ${config} for project ${prj} I have tried: msbuild project=${prj}/ but where is a place for configuration. Thanks a lot, Boni P.S. May we need better examples in the documentation?

Re: [NAnt-users] Evaluation of if and unless

2006-08-01 Thread Bonio Lopez
Hi Gert, Regarding your example, my feeling is that there would be very natural, if fileset files would be empty and nothing would be copied. I would consider this example as a logical error of the programmer, who created such file. As we have just discussed nant is sequential. So when fileset was

Re: [NAnt-users] Bug in setting of nant .net version

2006-08-01 Thread Gary Feldman
Bonio Lopez wrote: Hi, Following code prints version 1.1 on my PC and ignores overwrite=false. I use nant 0.85 rc4 on windows Regards, Boni project property name=nant.settings.currentframework value=net-2.0/ property name=nant.settings.currentframework value=net-1.1 overwrite=false/

Re: [NAnt-users] Bug in setting of nant .net version

2006-08-01 Thread Bonio Lopez
Hi Gary, I have a master build file, with default settings, which I include in all projects. So I needed for most projects net-1.1. If for some project I need net2.0 I would set it in the build file of this project. I solved the problem introducing a new property. I.e property name=clr.version