Re: [NAnt-users] nunit-console executes, but does not return control to NAnt

2010-06-09 Thread David Keaveny
Hmm, some further digging suggests it may be some badly written multi-threading tests : http://stackoverflow.com/questions/2433700/nunit-console-exe-hangs-after-finishing-test-run I'll fix up the tests and see what happens. From: David Keaveny Sent: Thursday, 10 June 2010 10:23 AM To:

[NAnt-users] nunit-console executes, but does not return control to NAnt

2010-06-09 Thread David Keaveny
2010-06-10 09:49:24,910 [MyProject.Components:DEBUG] Exception caught: NAnt process timed out (after 600 seconds) You can see that the tests finish at 09:42:39, but nothing then happens until 09:49:23 when the timeout period hits. Has anyone else experience this sort of timeout problem? Many thanks, David K

[NAnt-users] Configurating NAnt

2009-01-30 Thread David Peterson
I am in the process of setting up my TDD and CI environment. I'm running VS2008, and a couple of other programs to get me started, they are NUnit and CruiseControl.Net. I am trying to configure NAnt to automate my solutions with a build file and running it from a batch file, this is what i did;.

Re: [NAnt-users] NAnt 0.86 fails with error re: Mono 3.5 on Mac OS 10.5

2008-08-08 Thread David Benn
Thanks for that Gert. It works fine now. On 08/08/2008, at 4:49 PM, Gert Driesen wrote: PKG_CONFIG_PATH Regards, David Benn [EMAIL PROTECTED] 0407 261163 "The real voyage of discovery consists not in seeking new landscapes but in having new eyes." (Mar

Re: [NAnt-users] NAnt 0.86 fails with error re: Mono 3.5 on Mac OS 10.5

2008-08-07 Thread David Benn
Specifically, PKG_CONFIG_PATH needs /Library/Frameworks/ Mono.framework//Versions/1.9.1/lib/pkgconfig/mono.pc added to it? I can see mono.pc but not mon.pc. How about dotnet.pc? On 08/08/2008, at 4:22 PM, David Benn wrote: Hi Gert I see this: pkg-config --modversion mon Package mon was not

Re: [NAnt-users] NAnt 0.86 fails with error re: Mono 3.5 on Mac OS 10.5

2008-08-07 Thread David Benn
stalled however. /Library/Frameworks/Mono.framework/ So, this is telling me that I need to add to PKG_CONFIG_PATH? Regards, David On 08/08/2008, at 4:04 PM, Gert Driesen wrote: pkg-config --modversion mon Regards, David Benn [EMAIL PROTECTED] 0407 261163 "The real voyage of discovery consist

[NAnt-users] NAnt 0.86 fails with error re: Mono 3.5 on Mac OS 10.5

2008-08-07 Thread David Benn
orks/Mono.framework/Versions/1.9.1/share/NAnt/bin/lib/ net/2.0 but certainly no 3.5 Any suggestions welcome. Regards, David Benn [EMAIL PROTECTED] 0407 261163 "The real voyage of discovery consists not in seeking new landsca

Re: [NAnt-users] NAnt hanging after build

2008-06-27 Thread David Paleino
On Mon, 23 Jun 2008 12:39:28 +0200, Gert Driesen wrote: > If you can reproduce it every time, then I'd suggest filing a bug against > Mono. https://bugzilla.novell.com/show_bug.cgi?id=404705 David -- . ''`. Debian maintainer | http://wiki.debian.org/DavidPaleino :

Re: [NAnt-users] Detecting path at runtime

2008-06-27 Thread David Paleino
On Fri, 27 Jun 2008 18:03:24 +0200, David Paleino wrote: > On Fri, 27 Jun 2008 17:48:24 +0200, Gert Driesen wrote: > > > Can I ask why you need the path to the mono shellscript? > > And, in my buildfile: > > [..] > Obviously, this is not standard. One might w

Re: [NAnt-users] Detecting path at runtime

2008-06-27 Thread David Paleino
On Fri, 27 Jun 2008 11:29:23 -0400, Bob Archer wrote: > You could just take the code from the beta and put it into a script task > in your .85 build script. Sure, thanks, but I'd regard this as a "last resort"... Thanks for the hint, David -- . '&#x

Re: [NAnt-users] Detecting path at runtime

2008-06-27 Thread David Paleino
On Fri, 27 Jun 2008 17:48:24 +0200, Gert Driesen wrote: > David, Hello Gert, > Can I ask why you need the path to the mono shellscript? Because I'm installing a wrapper for my assembly (/usr/lib/foo/foo.exe) in /usr/bin/foo. This is the wrapper: $ cat gnome-rdp.in #!/bin/sh

[NAnt-users] Detecting path at runtime

2008-06-27 Thread David Paleino
Hello *, still trying to use NAnt for my mono project :) I'd need to detect the PATH of `mono' at build-time: with 0.86-beta1 I'd do: framework::get-tool-path('mono') But I couldn't find any similar function in <= 0.85. Is there any workaround I could adopt? K

Re: [NAnt-users] Including resources

2008-06-25 Thread David Paleino
On Wed, 25 Jun 2008 16:43:24 +0200, David Paleino wrote: > On Wed, 25 Jun 2008 10:39:16 -0400, Bob Archer wrote: > > They're indeed the correct files. > Here's the project directory structure: > > [..] > |-- glade > | `-- gui.glade > [..] > > So,

Re: [NAnt-users] Including resources

2008-06-25 Thread David Paleino
og.cs |-- [..] `-- VNC.cs (I've stripped off "intuitive" content (see [..]) and files not relevant to the discussion, i.e. the NAnt config file, the MonoDevelop solution file, ...) So, glade/*, resources/* and icons/* should be fine (see my config file in the

Re: [NAnt-users] Including resources

2008-06-25 Thread David Paleino
On Wed, 25 Jun 2008 10:25:09 -0400, Bob Archer wrote: > Are you using Visual Studio on windows? If not, nevermind. No, I'm on Debian GNU/Linux, and MD (in my original post), stands for MonoDevelop (which, AFAIK, isn't available on Windows) Regards, David -- . ''`. D

Re: [NAnt-users] Including resources

2008-06-25 Thread David Paleino
On Wed, 25 Jun 2008 09:27:30 -0400, Bob Archer wrote: > Is there a reason you don't use MSBuild to do the compile step? Err... what's MSBuild? -- . ''`. Debian maintainer | http://wiki.debian.org/DavidPaleino : :' : Linuxer #334216 --|-- http://www.hanskalabs.net/ `. `'` GPG: 1392B174 ---

[NAnt-users] Including resources

2008-06-25 Thread David Paleino
under MD. Thus I suspect something wrong in the way NAnt embeds resources -- or probably I'm missing something. Any help would be very appreciated. David -- . ''`. Debian maintainer | http://wiki.debian.org/DavidPaleino : :' : Linuxer #334216 --|-- http://www.hanskalabs.

Re: [NAnt-users] NAnt hanging after build (was: Re: Missing assemblies, though referenced)

2008-06-23 Thread David Paleino
On Mon, 23 Jun 2008 12:39:28 +0200, Gert Driesen wrote: > Hey David, > > This would be a Mono bug. I happen to run into this from time to time > myself, but I cannot reproduce it consistently. > > If you can reproduce it every time, then I'd suggest filing a bug again

[NAnt-users] NAnt hanging after build (was: Re: Missing assemblies, though referenced)

2008-06-23 Thread David Paleino
On Mon, 23 Jun 2008 11:40:03 +0200, Gert Driesen wrote: > Hey David, Hi, > You have to specify where Nant can locate these assemblies. > > If the include pattern is a file name, then NAnt will also search for the > assembly in the list of reference assemblies for the

[NAnt-users] Missing assemblies, though referenced

2008-06-23 Thread David Paleino
Kindly, David -- . ''`. Debian maintainer | http://wiki.debian.org/DavidPaleino : :' : Linuxer #334216 --|-- http://www.hanskalabs.net/ `. `'` GPG: 1392B174 | http://snipr.com/qa_page `- 2BAB C625 4E66 E7B8 450A C3E1 E6

Re: [NAnt-users] Scripting SQL tables and views

2008-02-11 Thread David Keaveny
e two SETs are called, then the CREATE VIEW, which seems to insist on being the first statement to be executed. Strangely, neither osql.exe nor sqlcmd.exe seemed too bothered about this. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Ke

Re: [NAnt-users] Scripting SQL tables and views

2008-02-11 Thread David Keaveny
I tried swapping the task for running osql.exe from , so my build file looks like this: So the problem isn't with the scripts per se, it's how interacts with them. I'll play around with a few more settings and see what happens. ____ From: Dav

[NAnt-users] Scripting SQL tables and views

2008-02-10 Thread David Keaveny
script using osql.exe, it also runs fine. I haven't yet tried just using osql.exe called from , as I'd rather use the built-in task for the sake of readability. My build file looks like this: Can anyone spot anything obviously wrong with my picture? Regards, David Keave

Re: [NAnt-users] VS2008 solution format error

2008-01-24 Thread David Anderson
Thanks to all who responded. I'll use MSBuild for the moment. > Bob Archer <[EMAIL PROTECTED]> wrote: > > >> I'm using the latest nightly build, VS2008 prof trial and .NET 3.5 and >> I'm getting this error >> >> Solution format of file 'C:\test\Project\src\project.sln' is not >> supported. >>

[NAnt-users] VS2008 solution format error

2008-01-24 Thread David Anderson
Hi, I'm using the latest nightly build, VS2008 prof trial and .NET 3.5 and I'm getting this error Solution format of file 'C:\test\Project\src\project.sln' is not supported. Can any one shed any light? Many Tha

Re: [NAnt-users] Infomation Required

2007-05-17 Thread David Keaveny
svc.name and svc.msi to the name of the Windows service and the name of the .msi package respectively before calling the target; it works well for us with three services to install. Regards, David Keaveny From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [NAnt-users] Set the version in AssemblyInfo

2007-05-17 Thread David Keaveny
n this specific situation, using a CommonAssemblyInfo.cs is the way to go. David From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, 18 May 2007 12:17 AM To: [EMAIL PROTECTED]; nant-users@lists.sourceforge.net Subject:

Re: [NAnt-users] NUnit NAnt task roadmap

2007-05-03 Thread David Keaveny
Of course, the alternative solution is to use Kiwidude's NCover and NCoverReport tasks (http://www.kiwidude.com/dotnet/doc/NCoverExplorer.NAntTasks/tasks/ncove r.html ) - they'll happily shell out to NUnit 2.4. It's a win-win situation - you get to use NUnit 2.4, and you get to see code coverage

Re: [NAnt-users] trouble stopping web site using iisweb.vbs/ or how tostop just 1 site

2007-05-01 Thread David Keaveny
Is that the exact error message? It appears to be missing the "s" of ".vbs". Would it make any difference if you used the args list? Something like From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Imburg Se

Re: [NAnt-users] Nant capability

2007-04-03 Thread David Keaveny
What you want is the service::is-running () function in NAntContrib (http://nantcontrib.sourceforge.net/release/latest/help/functions/index. html) NAntContrib gives you a good amount of information from

Re: [NAnt-users] [ANN] compiling solution file is very very slowin nant

2007-03-27 Thread David Jones
[Cross-post with ccnet-users removed] How long does msbuild take to compile the solution? If it's pretty quick then there's probably an issue with your nant script - check there's not some horrific recursion - using a fileset like: without excluding the top-level build file

Re: [NAnt-users] Infomation Required

2007-03-27 Thread David Jones
There is an msbuild task in nant-contrib (http://nantcontrib.sourceforge.net/release/latest/help/tasks/msbuild.ht ml) I use it like this for web apps: Where current.build.config is Debug/Release etc, you could add the project attri

[NAnt-users] Problem setting a property conditionally where the value is a variable that may not have been set

2007-02-16 Thread David Jones
Hi folks, hope you can help me as it looks to me like this should be a very simple problem but I've been going round in circles. I have a target in an included build file to run msbuild on a .csproj file and it overwrites some of the settings in the proj file if certain nant properties are set. In

Re: [NAnt-users] Still unable to use NAnt

2006-12-20 Thread David Piepgrass
No, I had no intention of using mono. But it turns out that's sort of what was happening! When I ran I installed NAnt -debug, the problem became clear, so thanks for the tip. I installed NAnt to C:\Program Files\NAnt, but it turns out there is a NAnt.bat in Mono (version 1.1.17.1) that runs its o

[NAnt-users] Still unable to use NAnt

2006-12-18 Thread David Piepgrass
ntime framework 'mono-2.0' is not correctly configured in the NAnt configuration file. Invalid element . Unknown task or datatype. For more information regarding the cause of the build failure, run the build again in debug mode. Try 'nant -help' for more information

Re: [NAnt-users] Automate the build staging process to CVS respository using NAnt.

2006-11-13 Thread Weintraub, David
There are several Nant tasks for checkout and update in CVS. There's "cvs-checkout" to checkout from a CVS repository, "cvs-update" to do an update, and "cvs-export" to do a checkout without creating the CVS directories. See http://nant.sourceforge.net/release/latest/help/tasks/ for the task

Re: [NAnt-users] Perform task on error? or try/finally

2006-10-27 Thread Weintraub, David
You can use the Nant "nant.onfailure" property to specify the name of the task to run on a task failure:     The above will run the Nant task "revert" when a Nant task returns an error. You could then have the "revert" task do your cleanup. From: [EMAIL PROTECTED] [mailto:[E

Re: [NAnt-users] Can't use NAnt

2006-10-16 Thread David Piepgrass
No, I run nant directly (it is in the PATH) using the MS framework.Although mono is installed, I prefer to compile with the MS framework. Again, I didn't select mono, and the debug output suggests that there are errors for all other framework options -- it's just that for some reason they don't sho

Re: [NAnt-users] Can't use NAnt

2006-10-16 Thread David Piepgrass
Are you suggesting I need pkgconfig? If so, I don't know what to do.By the way, I tried to build the same software (boo) with NAnt on another computer and it succeeded. Clearly there is something NAnt doesn't like in my main computer's configuration. That computer has both .NET Framework 2.0 and m

[NAnt-users] Can't use NAnt

2006-10-16 Thread David Piepgrass
hat NAnt should be using) is at fault, because it does not contain the string "mono-2.0". I also tried nant -t:net-2.0, which produced the same error message. On 10/16/06, Gert Driesen <[EMAIL PROTECTED]> wrote: Hi David,   Are you running NAnt on Mono ? Did you build

[NAnt-users] Can't use NAnt

2006-10-16 Thread David Piepgrass
I'm trying to build a program using NAnt, but it fails immediately. Please see the output of nant -debug at http://pastebin.ca/205282It appears that NAnt can't find any frameworks (I have the .NET framework 2.0 installed, as well as mono). What could be going wrong?D:\Dev\Sandbox\boo-0.7.6.2237-sr

[NAnt-users] Running an external command and setting property to output

2006-09-22 Thread Weintraub, David
In many languages, it is possible to execute an external command and set the results to an internal variable. For example in Bourne shell:   todaysDate=`date`   And in Perl:   $hostname=qx(hostname);   Is it possible in Nant to set a property to the output of a system command? There is a re

[NAnt-users] /rcw option missing from axim command

2006-07-11 Thread Shaber, David (Adecco Tech - Boise)
op.SHDocVw.dll should be used and in RC4, no /rcw command is used and instead an extra assembly is created for SHDocVw.dll.  If this solution is built in VS.Net, the error does not occur.   The error at runtime is, “File or assembly name SHDocVw or one of its dependencies, was not found.”   Any

[NAnt-users] Nant & web references

2006-04-27 Thread ARQUIA - David Bravo
Hi,   Anyone know how to include in the project's build file a web reference? Thank's for all.   Regards   David

[NAnt-users] An issue with running Nunit when calling System.AppDomain.CurrentDomain.SetupInformation.PrivateBinPath

2006-04-03 Thread David Cheung
n.    If I place tpr.config on the root of C:\ the file is then located via Nant. Is there a way to manually set the bin path in Nant?   Thanks, David 

RE: [Nant-users] Building by solution task - complete solution file verses building by exec program - devenv task

2005-11-17 Thread Sparrman, David (GE Healthcare, consultant)
Hello Tim! We have had a somewhat bumpy road to build solutions containing C++ projects. Most our projects are C#, but a few (less than ten) is C++. Two of those have caused problems when building with Nant. Both time we needed to perform some magic with the task before calling the task. In vi

RE: [Nant-users] NAntContrib XSLT transform?

2005-11-09 Thread Sparrman, David (GE Healthcare, consultant)
Don't think so. I am also interested in a stylesheet for it (but does not have the time to write one) David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nielsen.Allan Rene Dystrup AND Sent: den 7 november 2005 18:12 To: nant-

[Nant-users] target execution probiem

2005-10-19 Thread david m. chinn
This may be a newbie problem, but I am unable to specify the build target on the command line to nant.   Here is the build file:                                           ‘nant’…. Runs the test target, as

RE: [Nant-users] multiple wildcards in filesets

2005-09-12 Thread Sparrman, David (GE Healthcare, consultant)
reference task using copy instead. It worked. Then I reran my old codestat task. And lo, now it works as intended. Well, thanks for your time, David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gary Feldman

[Nant-users] multiple wildcards in filesets

2005-09-12 Thread Sparrman, David (GE Healthcare, consultant)
specified, it works               regards, David     == For reference, Full nant target   Nants 0.85-rc3                                                                                                        

[Nant-users] zip task error

2005-08-11 Thread David Parrish
happening here?  If I remove the data fileset then it works fine.  The data directory has about 5 gigs of information with several sub trees that go about 2-4 deep.   Thanks, David

[Nant-users] Re: Can't run nant

2005-06-09 Thread David Plass
Sorry folks, false alarm; was just a weird permissions problem (fixed  via cygwin, thank you very much...) --DP Discover Yahoo! Find restaurants, movies, travel & more fun for the weekend. Check it out!

[Nant-users] Can't run nant

2005-06-09 Thread David Plass
Trying again, I think the first msg went to wrong place: Hi, I'm a newbie to nant (but not to ant, etc.)  I installed 0.85 RC3 under WinXPHome, I've installed .NET 1.1 SDK as well.  When I try to run NAnt.exe, I get this error: Help! TIA --DP   Unhandled Exception: System.TypeInitializationExcepti

[Nant-users] Can't run nant

2005-06-09 Thread David Plass
Hi, I'm a newbie to nant (but not to ant, etc.)  I installed 0.85 RC3 under WinXPHome, I've installed .NET 1.1 SDK as well.  When I try to run NAnt.exe, I get this error: Help! TIA --DP   Unhandled Exception: System.TypeInitializationException: The type initializer for "NAnt.Console.ConsoleStub" th

[Nant-users] only builds the first 3 projects

2005-06-03 Thread David Thielen
Hi;   I have 6 projects in a solution, 3 C++ and 3 C# ones. It builds the first C++ one, the first C# one, the second C++ one, and then quits. Building from withing Visual Studio does build all 6.   Any ideas?   Thanks – dave   C:\src\AutoTagBuild>nant compile NAnt 0.85 (Build 0.85

RE: [Nant-users] Triggering Nant Build from ASP.Net Web Page

2005-04-02 Thread David Reed
Draco also has a web interface already constructed which will serve the same purpose. We've been using it for a couple years and are very happy with it. http://draconet.sourceforge.net/ http://sourceforge.net/projects/draconet/ v1.6.3.0 was just recently released on 26 March. > -Original

[Nant-users] NAnt ECCN

2005-03-24 Thread Dejong,David P
  We are considering the use of NAnt in an organization that includes off-shore resources.  Is there an Export Control Classification Number (ECCN) that applies to NAnt?   Regards,   David De Jong St. Paul Travelers Co

[Nant-users] Custom Build tool issue.

2005-03-10 Thread David
I have a solution file that contains a project which calls a custom build tool that takes a .tst file as input, and outputs a .cpp (which then gets built using the c++ compiler).  It does not look like the custom build tool is ever getting called when I try and build the solution/proj

[Nant-users] Custom Build tool issue.

2005-03-10 Thread David Wallgren
I have a solution file that contains a project which calls a custom build tool that takes a .tst file as input, and outputs a .cpp (which then gets built using the c++ compiler). It does not look like the custom build tool is ever getting called when I try and build the solution/project using nant

[Nant-users] circular dependency problem

2005-03-09 Thread David Marlow
I am attempting to build a C# solution file using NAnt, the build fails with the message    "Circular dependency detected.".   The solution builds fine in visual studio. I am using the latest NAnt (build 0.85 rc2) and the same problem occurs when using a recent nightly build (2005-03-08)

[Nant-users] C++.net Build Problems

2005-03-08 Thread David Elliott
I am new to NAnt and trying to build a pre-existing VS.net 2003 solution file. Digging through the archives there seems to be limited support for c++.net which is where I am having some problems. If I create a new directory and pull the source code manually, then try to build with NAnt I get:

[Nant-users] Invalid numeric argument '/FU'

2005-03-07 Thread David Elliott
I am new to NAnt and am currently playing around to determine what I can do. Currently, I am most interested in using NAnt to build my VS .NET Solution file due 120 and growing project files. Plan to convert over entirely a little at a time. I have modified the build file I found under D:\Progr

[Nant-users] My random feedback on 0.85-rc2.

2005-03-06 Thread David Reed
mo’ bettah at this.   Big felicitations to Gert & Co. from Tejas.  Y’all rock!!   /*  * David Reed, Director of Product Development  * Prudential Real Estate Services Company  *  * <[EMAIL PROTECTED]>  * 713.490.7522 (office) ~ 832.215.3188 (cell)  *  Toll Free 1-866-

[Nant-users] Error building solution. 'cl' failed to start

2005-03-05 Thread David
d.    [cl] Compiling 1 files to 'C:\src\qpd\control_center\gui\Debug'.    [cl] Contents of C:\DOCUME~1\david\LOCALS~1\Temp\tmp35A.tmp.    [cl] /c    [cl] /D "WIN32"    [cl] /D "_DEBUG"    

RE: [Nant-users] Building C++ projects with the solution task

2005-01-20 Thread Sparrman, David (GE Healthcare, non-ge)
: Sparrman, David (GE Healthcare, non-ge); nant-users@lists.sourceforge.net Subject: RE: [Nant-users] Building C++ projects with the solution task   The Visual Studio macro is called $(ProjectDir), not $(ProjDir). That should solve your problem.     From: [EMAIL PROTECTED] [mailto:[EMAIL

[Nant-users] Building C++ projects with the solution task

2005-01-20 Thread Sparrman, David (GE Healthcare, non-ge)
  We are running NAnt 0.85 nightly 2001-01-15 using the solution task.   If a C++ project file in the solution has an assembly reference using variable ${SolutionDir) to define referenced location, building the solution using nant works. Unfortunately, we cannot use that approach since

[Nant-users] Can task be used with cl.exe version 13.10.3077.0?

2004-12-19 Thread David Cahill
anyone can help, it would be appreciated. Thanks, David Cahill. --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to th

[Nant-users] NAnt VS Build Forge

2004-09-21 Thread Shaber, David
I was wondering if anyone has done any comparisons between BuildForge and NAnt. What features are better for each product? Thanks, David --- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an

RE: [Nant-users] Last attempt: Trying again to report a nant bug

2004-09-10 Thread David Thielen
September 10, 2004 9:08 AM To: David Thielen; [EMAIL PROTECTED] Subject: Re: [Nant-users] Last attempt: Trying again to report a nant bug David, If you would've payed better attention, you would've noticed that I did reply to your email saying that I did not have time straight away, b

[Nant-users] Last attempt: Trying again to report a nant bug

2004-09-10 Thread David Thielen
me and let me know.   Thanks – dave   Ps – I don’t mean to sound pissy but I spent an hour creating the smallest possible solution that causes these two bugs and I’ve posted it 7 times before to no avail.   From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08

[Nant-users] Trying again to report a nant bug

2004-09-08 Thread David Thielen
Hi;   I’m trying once again to report a nant bug. A very simple solution that reproduces it is at http://www.thielen.com/nant-bug.zip. Could someone in the nant dev group grab it and let me know you got it? (I spent almost an hour creating a very simple example just for this purpose.)  

[Nant-users] A please for a defaultDirectory attribute on all compile & link tasks

2004-08-28 Thread David Thielen
Hi;   I can’t use nant to do a , , , etc. because it looks for the public key file in a directory above the project root. Being able to set the default dir would solve this.   Thanks - dave

[Nant-users] won't build

2004-08-28 Thread David Thielen
Hi;   I have a solution (for a Word add-in written in C#) that won’t build. My task is:                                       The error is: compile_all:    [solution] Starting solution build.  [solution] Only C#, VB.NET and C

[Nant-users] A suggested task

2004-08-28 Thread David Thielen
Hi;   It would be real nice if there was a signcode task (for authenticode signing). And… if it used chktrust to determine if the file needed to be signed.   I would do it but I don’t understand all the signcode options well enough to do it right.   Thanks - dave

RE: [Nant-users] throws assembly mis-match exception

2004-08-28 Thread David Thielen
: David Thielen; [EMAIL PROTECTED] Subject: Re: [Nant-users] throws assembly mis-match exception - Original Message - From: "David Thielen" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, A

RE: [Nant-users] throws assembly mis-match exception

2004-08-28 Thread David Thielen
Yes I do have the older one in both locations. But what do I do in this case? Thanks - dave -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Saturday, August 28, 2004 3:13 PM To: David Thielen; [EMAIL PROTECTED] Subject: Re: [Nant-users] throws assembly mis-match

[Nant-users] throws assembly mis-match exception

2004-08-28 Thread David Thielen
Hi;   I have the latest build of nant and I have ndoc 1.3.1549.0 (the latest release). Help please.   Thanks – dave     I get this: BUILD FAILED - 1 non-fatal error(s), 2 warning(s)   INTERNAL ERROR   System.IO.FileLoadException: The located assembly's manifest definition with n

[Nant-users] ndoc task questions

2004-08-28 Thread David Thielen
Hi;   This is with the latest build: There is no documentation for the tag. Is there a documentor for the VS .NET documentor?   Thanks - dave

[Nant-users] nunit2 failing - no message, several other problems

2004-08-28 Thread David Thielen
Hi;   I’m running the latest build and have nunit 2.2 installed. When I try the following task:                     I get:   C:\src\netClient>nant test NAnt 0.85 (Build 0.85.1693.0; net-1.0.win32; nightly; 8/20/2004

[Nant-users] How does convert::to-boolean() work?

2004-08-28 Thread David Thielen
I have the attribute:   unless='convert::to-boolean("${signed} = 0")'   and tried (just to see how it works):   unless='convert::to-boolean("true()")'   Where ${signed} is a ‘1’   I have tried everything to get this to work and keep getting:   C:\src\netClient\netClient.bu

[Nant-users] Properties Descriptions

2004-08-26 Thread Shaber, David
back in? If it cannot, where can I edit the code to add this?   I think this was a nice feature to assist in documenting my build files.   Thanks,   David Shaber  

[Nant-users] doesn't do anything

2004-08-26 Thread David Thielen
Hi;   I have the following:             And it does nothing. It even says 0 assemblies signed. This is with the latest release version.   Any ideas?   Thanks - dave

RE: [Nant-users] How to set default dir for

2004-08-25 Thread David Thielen
lto:[EMAIL PROTECTED] Sent: Wednesday, August 25, 2004 12:14 AM To: David Thielen; [EMAIL PROTECTED] Subject: Re: [Nant-users] How to set default dir for David, I know the csc looks for the key file relative to the current directory and the output directory. I'm not sure if the MS vjc compil

[Nant-users] is there a signcode task

2004-08-24 Thread David Thielen
Hi;   Is there a task that does an authenticode signing?   Thanks - dave

[Nant-users] How to set default dir for

2004-08-24 Thread David Thielen
Hi;   In my AssemblyInfo.jsl I have @assembly AssemblyKeyFile("..\\public.snk")   The relative path to public.snk works fine when I build in Visual Studio. However, when I build using nant it can’t find the file. I need to be able to build with both.   Is there a way I can set the def

RE: [Nant-users] What is Nantpad worth?

2004-08-24 Thread David Reed
In solution explorer, right click a build file and choose Open With.  Choose the Html\Xml Editor and whack set as default.  Then Open.     To get full Intellisense, you have to copy the schema for your version of NAnt to the equivalent on your machine of C:\Program Files\Microsoft Visu

RE: [Nant-users] nunit assembly not found

2004-08-19 Thread David Thielen
et it working on my system at work - but not my system at home. Thanks - dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gert Driesen Sent: Thursday, August 19, 2004 1:42 AM To: David Thielen; [EMAIL PROTECTED] Subject: Re: [Nant-users] nunit assembl

RE: [Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Shaber, David
quot;File" does this also.) Here is an example build file: This will echo each folder name, but skips the 'cvs' folders. David -Original Message- From:

[Nant-users] Copy misses 'CVS' Directories

2004-08-19 Thread Shaber, David
‘cvs’ and the files it contains are not copied.   Here is an example build file and I have a zip with a sample directory structure if anyone needs it.                         Thanks,   David

[Nant-users] Not sign unless rebuilt

2004-08-18 Thread David Thielen
Hi;   For my compile task I do a and then an to sign (authenticode) the code. How can I set it to not sign it unless it is recompiled?   Thanks - dave

[Nant-users] nunit assembly not found

2004-08-18 Thread David Thielen
Hi;   I added                     To Nant.exe.config.   I have nunit 2.2 (actually 2.1.91 acording to gacutil) installed and in the GAC.   I set my task as:              

[Nant-users] references for and

2004-08-17 Thread David Thielen
Hi; I think these questions are related. 1) I created a task to compile a project. I then call it with the project name as a property. This lets me build everything fine with directory and dll naming. But I have a couple of problems: 1a) I still have to have a separate task for the .exe projec

[Nant-users] changing the log level

2004-07-08 Thread Shaber, David
to Info so that the programs output will be displayed? Is there a way to capture the output of executed programs in Nant so that I can output it to the screen with an echo level=”Warning”?   Any suggestions   Thanks for the help,   David Shaber  

[Nant-users] Using Nant with .NET framework and w2k

2004-06-24 Thread david . a . taylor
s the nightly build will know this. > Regards, > > David Taylor > Extension: 4496 > Email: [EMAIL PROTECTED] > Mobile: +44 7966 490138 > --- This SF.Net email sponsored by Black Hat Briefings &a

[Nant-users] RE: Nant-users digest, Vol 1 #862 - 4 msgs

2004-06-10 Thread Shaber, David
property.Key, property.Value); } Console.WriteLine("Setting test.property to 'new value'"); pd["test.property"] = "new value"; } } ]]></code> David

[Nant-users] newest-of-the-newbise question

2004-06-05 Thread David Tilley
Title: newest-of-the-newbise question Hi all. My first hour in Nant. Not sure why I get zero files compiling. I grabbed the build file from a using nant tutorial. any help would be appreciated. dave NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 12/26/2003) Copyright (C) 2001-

[Nant-users] Call task and Dependencies?

2004-05-27 Thread Shaber, David
? Output: 3: [echo] 3 2: [echo] 2 [echo] 3 2: [echo] 2 1: [echo] 1 BUILD SUCCEEDED Thanks for the help, David --- This SF.Net email is sponsored by: Oracle 10g Get certified on the hottest thing ever to

[Nant-users] Possibility of nant running parallel on a network of machines?

2004-03-19 Thread Wong, David
ild? Similar to make or IncrediBuild http://www.xoreax.com/main.htm. This feature would be very useful and vital for big projects.   thanks, David

RE: [Nant-users] Nant contrib VSSGet version attribute seems to f ail

2004-03-03 Thread David Bowman
Hi, We're seeing exactly the same problem here using the nightly build from the 26th in conjunction with Visual Source Safe 6.0d build 9848 Dave -Original Message- From: Tom Peryam [mailto:[EMAIL PROTECTED] Sent: 03 March 2004 02:21 To: '[EMAIL PROTECTED]' Subject: [Nant-users] Nant con

RE: [ndoc-devel] RE: [Nant-users] NDoc Initialize Failure

2004-03-01 Thread David Reed
TECTED] On Behalf Of Donald Kackman Sent: Saturday, February 28, 2004 9:43 AM To: David Reed; 'NAnt User List (E-mail)' Cc: 'NDoc Developers' Subject: [ndoc-devel] RE: [Nant-users] NDoc Initialize Failure   David,   We’ve implemented a fix for this problem which should al

  1   2   >