Re: [NAnt-users] Infomation Required

2007-05-17 Thread David Keaveny
I don't believe there's a specific task, so we do something like this:

[NAnt-users] Infomation Required

2007-05-17 Thread Deepak Surendran
Hi, Using NANT file i am able to create MSI for my project. Whether is it possible to install the MSI automatically using NANT file. I have automated the nant build file in our build server.It will create the MSI in our build server.So every time we have to install the MSI manually. Is there

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

2007-05-17 Thread David Keaveny
Just as an aside, some time ago, I uploaded a task to NAntContrib developers group; I haven't seen any updates since to indicate whether it was going to be included in later builds of NAntContrib, and the developers mailing list isn't very helpful on the subject. It's quite easy to use: w

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

2007-05-17 Thread Bob Archer
Correct. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of DinkaYa Sent: Thursday, May 17, 2007 2:33 PM To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Set the version in AssemblyInfo Ok, I think I understand now, please correct me if I'm w

Re: [NAnt-users] FW: Nant help

2007-05-17 Thread Gert Driesen
Karin, Can you send me a copy of that solution file ? Gert -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gates, Karin Sent: donderdag 17 mei 2007 20:27 To: nant-users@lists.sourceforge.net Subject: [NAnt-users] FW: Nant help Hello, I am trying to get

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

2007-05-17 Thread DinkaYa
Ok, I think I understand now, please correct me if I'm wrong, if I compile my project having a link to the AssemblyInfoCommon and having an AssemblyInfo the assembly eventually will contain a union of the attributes defined in both of the AssembyInfos. Bob Archer wrote: > > What we do is have t

[NAnt-users] FW: Nant help

2007-05-17 Thread Gates, Karin
Hello, I am trying to get the task to work for me but I keep getting an access denied error. I am using the nightly build since I understand that the solution task does not work with .NET 2005. Here is my build file contents: http://nant.sf.net/nightly/2007-04-15-0.86/nant.xsd"; >

Re: [NAnt-users] regex: reading across lines

2007-05-17 Thread Bob Archer
Cool, regex is certainly an art. I always have to go back to a tutorial site that I refer to whenever I had to write more than a very basic one. Here is the link if it is helpful: http://www.regular-expressions.info/tutorial.html BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[E

Re: [NAnt-users] regex: reading across lines

2007-05-17 Thread Curtis Zarger
THX Bob, I didn't get the multiline to work, but I did the desired results with use of the \s and \S whitespace and non-whitespace shorthands. - Original Message From: Bob Archer <[EMAIL PROTECTED]> To: Curtis Zarger <[EMAIL PROTECTED]>; nant-users@lists.sourceforge.net Sent: Thursda

Re: [NAnt-users] regex: reading across lines

2007-05-17 Thread Bob Archer
Try adding options="Multiline" to your regex task. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Curtis Zarger Sent: Thursday, May 17, 2007 11:07 AM To: nant-users@lists.sourceforge.net Cc: Curtis Zarger Subject: [NAnt-users] regex: reading across

[NAnt-users] regex: reading across lines

2007-05-17 Thread Curtis Zarger
Hello, I have a text file. I want to extract all of the lines that are between two unique strings within the file. I've only been able to extract the text that's between two strings, on a single line. The file format is below, as well as the regex task. The problem is that the regex only reads

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

2007-05-17 Thread Tony.Bjerstedt
I also use the two assembly info file solution and it works great. I keep all of the project specific info in "AssemblyInfo.cs" and the shared info in "CommonAssemblyInfo.cs". For example, the common file looks like: using System.Reflection; using System.Runtime.CompilerServices; using Syst

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

2007-05-17 Thread DinkaYa
But then all the projects will have the same Guid... Also, how do you link the projects to the AssemblyInfoCommon? Bob Archer wrote: > > What we do is have two AssemblyInfo files. One called AssemblyInfoCommon > that we link to all projects in a solution. This has static info like > company nam

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

2007-05-17 Thread Bob Archer
What we do is have two AssemblyInfo files. One called AssemblyInfoCommon that we link to all projects in a solution. This has static info like company name, copyright, etc. Then we have one that gets genned by the build with just AssemblyVersion and AssemblyFileVersion in it. You could do a similar

[NAnt-users] Set the version in AssemblyInfo

2007-05-17 Thread DinkaYa
I would to set the AssemblyVersion in AssemblyInfo, the problem is that using asminfo I'm having trouble generating the Guid for the assembly in case that it will be exposed to COM, does anybody have any ideas how it is possible to generate the Guid or a different way to set the AssemblyVersion?

Re: [NAnt-users] vssget is not working

2007-05-17 Thread DinkaYa
It did! Thank you! Dina, You're not actually executing the "runGetLatest" target. Try changing the build target like this: ... This will cause the "runGetLatest" target to get executed when you run the "build" target. Alternatively, you could specify both the "runGetLates

Re: [NAnt-users] vssget is not working

2007-05-17 Thread Gert Driesen
Dina, You're not actually executing the "runGetLatest" target. Try changing the build target like this: ... This will cause the "runGetLatest" target to get executed when you run the "build" target. Alternatively, you could specify both the "runGetLatest" and "build" target o

[NAnt-users] vssget is not working

2007-05-17 Thread DinkaYa
Hi, I'm very new to NAnt, I'm trying to do some basic staff with NAnt, read this article here: http://www.15seconds.com/issue/040621.htm Having trouble with vssget, it doesn't see to be doing anything, the build goes successfully, no error messages or anything, but I don't see that it gets the la