RE: [Nant-users] Defining and Creating a build process

2004-01-09 Thread Damir Simunic
Likwid, Try this link: http://msdn.microsoft.com/library/en-us/dnbda/html/tdlg_ch5.asp?frame=true Cheers, Damir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, January 09, 2004 5:06 PM To: [EMAIL PROTECTED] Subject: [

RE: [Nant-users] Newbie question on using nant to push to production

2004-01-08 Thread Damir Simunic
I agree it's much easier to deploy with NAnt. My point on msi applies to web apps as well: I found out that when we do xcopy deployment, we get a lot of garbage on the production machine after a while. In my experience, most developers don't care to remove files that are not in use any more, and

RE: [Nant-users] Newbie question on using nant to push to production

2004-01-08 Thread Damir Simunic
Title: Newbie question on using nant to push to production Great, thanks. That'd be useful.   Cheers,   Damir   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Landes Eric (RBNA/CIT4.2)Sent: Thursday, January 08, 2004 7:36 PMTo: [EMAIL PROTECTED]Subject: RE: [Nant-users] Newb

RE: [Nant-users] Newbie question on using nant to push to production

2004-01-08 Thread Damir Simunic
Title: Newbie question on using nant to push to production I had similar experience with cruisecontrol.net: no scheduled builds, which is a pain.   We've evaluated draco.net but found that cruisecontrol has better reporting capabilities over the web. They even had this control panel thing wh

RE: [Nant-users] Newbie question on using nant to push to production

2004-01-08 Thread Damir Simunic
Title: Newbie question on using nant to push to production Eric,     The step that moves the results to production is different than other steps, inasmuch as you should move the tested bits from test/staging, not re-build the source.   I prefer to use .msi installers for deployment -- you ge

RE: [Nant-users] Problems with vsslabel

2004-01-06 Thread Damir Simunic
Eric, Do you have source safe client installed on the local machine? Can you access the specified srcsafe.ini file from the windows explorer/source safe explorer? Cheers, Damir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Landes Eric (RBNA/CIT4.2)

RE: [Nant-users] Mailing build results

2004-01-06 Thread Damir Simunic
Mark, take a look at http://sourceforge.net/mailarchive/message.php?msg_id=6764362 Cheers, Damir _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Dowell Sent: Tuesday, January 06, 2004 4:43 PM To: '[EMAIL PROTECTED]' Subject: [Nant-users] Mailing build result

RE: [Nant-users] Unmanaged C++ COM build via

2004-01-05 Thread Damir Simunic
Tim,     I'd suggest using devenv.com /build and start it through exec task. That is how we do it.   I don't think it's possible to use the solution task at this point for c++ projects.   Cheers,   Damir From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim MarksSent: Monday,

RE: [Nant-users] sosget

2003-12-16 Thread Damir Simunic
Yuri, Use the command line sos client with the task. Damir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yuri Kuleshov Sent: Tuesday, December 16, 2003 11:29 AM To: [EMAIL PROTECTED] Subject: [Nant-users] sosget People hi, Does anyone know how to

RE: [Nant-users] enabling/disabling targets on task availability

2003-12-12 Thread Damir Simunic
Rodrigo, targets can be conditionally executed with if/unless attributes: If/unless can be applied to any task, not just call. You can also use if/unless on the target itself: ... Damir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rodrigo B. d

RE: [Nant-users] Including external properties files

2003-12-12 Thread Damir Simunic
Kevin, Do you have the namespace defined for visual studio intellisense or such in the file that includes other files? Damir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Dickover Sent: Friday, December 12, 2003 4:55 PM To: 'Nant (E-mail)' Subje

RE: [Nant-users] Including external properties files

2003-12-12 Thread Damir Simunic
Daniel, The properties file is just another build file. As you can include build files, there are several ways you can achieve what you want: A) In your master build file, include the properties file B) Include the build file from the user's file with properties ... C) Execute the b

RE: [Nant-users] Specifying -logger in the build file

2003-12-03 Thread Damir Simunic
Douglas, you can log to a default text log, and then write a target that will send email to you. For example:

[Nant-users] RE: [nant-dev] FYI

2003-11-18 Thread Damir Simunic
Since there is so much interest in this msbuild thing, here's the list of namespaces Microsoft.Build.BuildEngine When you open the link, click on 'sync toc' to see the rest of Microsoft.Build.* namespaces in the TOC. http://longhorn.msdn.microsoft.com/?//longhorn.msdn.microsoft.com/lhsdk/ref/ mic