[Fwd: Re: [Nant-users] Nant and dependencied]

2004-06-02 Thread Ian MacLean
Sorry - my bad. I misread outofdate as uptodate. Ian Martin Gainty wrote: ~Martin~ P.S. Anyone sign up for the outofdate task??? Personally I know ant far better than nant and would be more than happy to tackle an outofdate task (if it's not already on the burner) http://nant.sourceforge.net/nig

Re: [Nant-users] Nant and dependencied

2004-06-02 Thread Ian MacLean
Martin Gainty wrote: ~Martin~ P.S. Anyone sign up for the outofdate task??? Personally I know ant far better than nant and would be more than happy to tackle an outofdate task (if it's not already on the burner) http://nant.sourceforge.net/nightly/help/tasks/uptodate.html Ian - Original Mess

[Nant-users] resx files /resources question

2004-06-02 Thread Michael Rudge
I am using a modified vsconvert.xsl to produce my build files. I previously used slingshot. When creating the build files for code-behinds, slingshot produced a resgen task for the .resx files that converted them to resource, and created arg properties for the compile (csc). The .xsl file only crea

Re: [Nant-users] Nant and dependencied

2004-06-02 Thread Martin Gainty
Scott- The smarts to create the dependencies must begin and end with the conditions configured by build engineer (ultimately) I've not seen any compiler that is smart enough to execute itself in whole or part based upon any series of dependent conditions considering that the condition could be a se

Re: [Nant-users] Nant and dependencied

2004-06-02 Thread Gary Feldman
>From: "Scott Hernandez" <[EMAIL PROTECTED]> >Sent: Wednesday, June 02, 2004 2:39 PM > dependencies. It would nice if the compiler took care of that, or we would > need to parse the source files in some task, collect the new dependencies, > and use them in the cl task. Not exactly clean, but if som

Re: [Nant-users] Nant and dependencied

2004-06-02 Thread Scott Hernandez
There is no question that this should be handled automatically, but that requires somebody pre-process the source files and generate additional dependencies. It would nice if the compiler took care of that, or we would need to parse the source files in some task, collect the new dependencies, and u

RE: [Nant-users] Nant and dependencied

2004-06-02 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
The only downside to this method is that you need to know the dependencies ahead of time and manually put them in the build file. One would think that a utility to do this for you would exist... Then again, most people using .NET technologies are using VB or C#. Unfortunately, this means that peop

Re: [Nant-users] Nant and dependencied

2004-06-02 Thread Scott Hernandez
An easy way, would be to use the uptodate task to check if any headers have changed, then touch (to update the timestamp) all your cpp files before your compilation step. This will cause the compiler to recompile. http://nant.sourceforge.net/nightly/help/tasks/uptodate.html http://nant.sourceforge

Re: [Nant-users] Global Properties

2004-06-02 Thread Gert Driesen
Nope, had some problems with my build machine.  I'll upload a new nightly later today.   I'll keep you informed.   Gert - Original Message - From: Dan Pupek To: NAnt Users List Sent: Wednesday, June 02, 2004 5:45 PM Subject: [Nant-users] Global Properties

[Nant-users] Global Properties

2004-06-02 Thread Dan Pupek
Are global properties available in the latest build?   Dan Pupek Software Engineer Advanced Systems Technology, Inc [EMAIL PROTECTED] (850) 475-4038   BEGIN:VCARD VERSION:2.1 N:Pupek;Daniel FN:Daniel Pupek NICKNAME:Dan ORG:Advanced Systems Technology, Inc.;TDD TITLE:Software Engineer TEL;WO

RE: [Nant-users] Nant and dependencied

2004-06-02 Thread Konstantin Sokolovskiy
Hi Martin. Thanks for your answer, but it is really enough difficult to install Java2 Platform on our developer computers. In any case, I am not sure that OutOfDate task is really that I am looking for. What I am looking for: 1. Utility, which could build the list of dependencies for each partic

Re: [Nant-users] Nant and dependencied

2004-06-02 Thread Martin Gainty
Konstantin- If you are capable to install 1.42 Java2 Platform Standard Edition at http://java.sun.com/j2se/1.4.2/download.html and install the more capable Ant build utility from http://ant.apache.org/bindownload.cgi you could use the OutOfDate task- http://ant-contrib.sourceforge.net/tasks/outof

[Nant-users] Bitmap resource

2004-06-02 Thread Sascha Andres
Hi, maybe I'm stuck in the wrong way, but how do I include a bitmap as a resource? -sa -- sa at programmers-world dot com http://www.livingit.de Internet sites: http://www.not2long.net - Make long links short Boomarks online: http://www.mobile-bookmarks.info --

[Nant-users] Nant and dependencied

2004-06-02 Thread Konstantin Sokolovskiy
Hello, all. I am a newbie in Nant so my question may be stupid. I try to create .build file for a simple C++ project. It looks like: [...]