Re: [Nant-users] Versioning the Assembly

2004-04-06 Thread James Geurts
Hi Bob, It might be worth taking a look at this page. A while ago, I conglomerated some ideas into two tasks. They grab and increment the version number in an AssemblyInfo.cs file. I find it useful when dealing with source control and when not able to generate the assemblyInfo... http://blogs.

RE: [Nant-users] Versioning the Assembly

2004-04-06 Thread Bob Archer
Title: Message DUH? The asminfo task… how did I miss that.   Thanks folks!   Bob     From: Clayton Harbour [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 11:20 AM To: Bob Archer; [EMAIL PROTECTED] Subject: RE: [Nant-users] Versioning the Assembly   Hi Bob

RE: [Nant-users] Versioning the Assembly

2004-04-06 Thread Clayton Harbour
Title: Message Hi Bob,   You want to look at the task located here:     http://nant.sourceforge.net/help/tasks/asminfo.html   For examples you can check out NAnt's build file here:     http://cvs.sourceforge.net/viewcvs.py/nant/nant/NAnt.build?annotate=1.151     line: 74     Cheers,     Clay

RE: [Nant-users] Versioning the Assembly

2004-04-06 Thread Bonnett, Evan A
Title: Message While I have not done this yet, I plan on it.  Try using the task to create an AssemblyInfo file on the fly.  Then, check in the newly create file.   Hope that helps, Evan A. Bonnett Reynolds and Reynolds, IT      -Original Message-From: Bob Archer [mailto:[EMAIL

RE: [Nant-users] Versioning the Assembly

2004-04-06 Thread Nitin Agarwal
Title: Message I have written Nant CustomTask to update the Assembly version automatically. We have a process for automated build, which uses this task and increments the assembly version for the project. The assembly version can be incremented for Major, Minor, incremental builds.   My b