[Nant-users] Newbie Question about

2005-09-09 Thread Anderson, Kelly
Hi all, newbie alert. In the cl task, there is a entry like so: ... I have several defines that differ based upon which product I'm bui

RE: [Nant-users] newbie question: system cannot find the C++ compiler

2005-06-30 Thread Bill Arnette
IL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pat LawrenceSent: Thursday, June 30, 2005 9:45 AMTo: Thibaut BarrèreCc: nant-users@lists.sourceforge.netSubject: Re: [Nant-users] newbie question: system cannot find the C++ compiler Thank you for your help.  I tried calling

Re: [Nant-users] newbie question: system cannot find the C++ compiler

2005-06-30 Thread Pat Lawrence
Thank you for your help.  I tried calling the vsvars32 script and also tried putting it in the PATH but I couldn't get it to work.  I haven't yet graduated from school and am just a new intern here at the office, so I'm seeing PATH variables for the first time.  What I did do was put the C:\Progra

Re: [Nant-users] newbie question: system cannot find the C++ compiler

2005-06-29 Thread Thibaut Barrère
Hi Pat   Maybe calling the vcvars32.bat script in C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\vsvars32.bat before starting your script will solve the issue.   This should add the required folders to the PATH to ensure later calls to cl.exe are successful.   regards   Thibaut Ba

[Nant-users] newbie question: system cannot find the C++ compiler

2005-06-29 Thread Pat Lawrence
Hello everyone, I was asked to get some automated nightly builds going on several C++ .NET project that are all pretty huge.   I apologize for how basic this question is, but I've been fiddling both with very simple build files in order to compile just a single .cpp file and also with the solution

RE: [Nant-users] Newbie question

2004-09-02 Thread Felice Vittoria
( http://www.mail-archive.com/nant-users%40lists.sourceforge.net/msg04610.html ).    HTH, Felice -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Shawn HaighSent: Wednesday, September 01, 2004 4:14 PMTo: [EMAIL PROTECTED]Subject: [

[Nant-users] Newbie question

2004-09-01 Thread Shawn Haigh
Greetings Nant users.   Does anyone have an idea on how to manipulate property strings?    I have a property ${build.number} that contains a value of “1.0.801.1” I would like to replace the dots (.) with underscores (_)…     I have gotten as far as using regExp in VB to return my des

Re: [Nant-users] Newbie question: VBC vs. Solution task

2004-07-01 Thread Ian MacLean
TED] Sent: Wednesday, June 30, 2004 10:35 PM To: Ian MacLean Cc: Shawn Knowles; [EMAIL PROTECTED] Subject: Re: [Nant-users] Newbie question: VBC vs. Solution task / I mean 'It would help ...'/ I would help if you also post the text of the exception you get form the Solution task buil

RE: [Nant-users] Newbie question: VBC vs. Solution task

2004-07-01 Thread Shawn Knowles
both produce a 164kb binary. I assume I am missing something in my VBC build script. Shawn -Original Message- From: Ian MacLean [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 30, 2004 10:35 PM To: Ian MacLean Cc: Shawn Knowles; [EMAIL PROTECTED] Subject: Re: [Nant-users] Newbie question

Re: [Nant-users] Newbie question: VBC vs. Solution task

2004-06-30 Thread Ian MacLean
/ I mean 'It would help ...'/ I would help if you also post the text of the exception you get form the Solution task built version. Also - do the built binaries differ in file size ? We've had issues previously where resources weren't compiled in properly causing a runtime exception. Ian Shawn

Re: [Nant-users] Newbie question: VBC vs. Solution task

2004-06-30 Thread Ian MacLean
Shawn, I would help if you also post the text of the exception you get form the Solution task built version. Also - do the built binaries differ in file size ? We've had issues previously where resources weren't compiled in properly causing a runtime exception. Ian Shawn Knowles wrote: I would

[Nant-users] Newbie question: VBC vs. Solution task

2004-06-30 Thread Shawn Knowles
I would prefer building my solution using the solution task as opposed to the VBC task but I have been unsuccessful in doing so.  I know I am missing something because when I compile using VBC and specify all includes and imports the exe works fine.  Using the SOLUTION task, the exe compile

RE: [Nant-users] Newbie Question Regarding Referencing Assemblies

2004-04-06 Thread Noel Gifford
Beaudet Sent: Tuesday, April 06, 2004 12:54 PM To: [EMAIL PROTECTED] Subject: [Nant-users] Newbie Question Regarding Referencing Assemblies   I’ve got two simple *.cs files:   One called app.cs as shown below:   using System;     public class App   {     public static void Main

RE: [Nant-users] Newbie Question Regarding Referencing Assemblies

2004-04-06 Thread Noel Gifford
PM To: [EMAIL PROTECTED] Subject: [Nant-users] Newbie Question Regarding Referencing Assemblies   I’ve got two simple *.cs files:   One called app.cs as shown below:   using System;     public class App   {     public static void Main()     {   Console.WriteLine( "1 + 1

Re: [Nant-users] Newbie Question Regarding Referencing Assemblies

2004-04-06 Thread Jaroslaw Kowalski
You should reference bin\Debug\lib.dll instead of lib.dll Hope it helps. Jarek - Original Message - From: "Brian Beaudet" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 06, 2004 10:54 PM Subject: [Nant-users] Newbie Question Regarding Referenci

[Nant-users] Newbie Question Regarding Referencing Assemblies

2004-04-06 Thread Brian Beaudet
I’ve got two simple *.cs files:   One called app.cs as shown below:   using System;     public class App   {     public static void Main()     {   Console.WriteLine( "1 + 1 = {0}", Calculator.Add( 1, 1 ) );     }   }     and another called lib.cs as shown below:      

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

2004-01-16 Thread Morris, Jason
logic that the web app contains. I'd rather do the update > scripts, but I don't see how I can accomplish that without > manually intervening in the build files.TIA > > Eric L. > > -Original Message- > From: Morris, Jason [mailto:[EMAIL PROTECTE

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

2004-01-09 Thread Landes Eric (RBNA/CIT4.2)
From: Morris, Jason [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 4:25 PM To: [EMAIL PROTECTED] Subject: RE: [Nant-users] Newbie question on using nant to push to production We could and can build everything from the repository since we tag everything for each build. However disk space is che

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

2004-01-08 Thread Morris, Jason
t; Subject: RE: [Nant-users] Newbie question on using nant to > push to production > > Jason, > I assumed that you copied your bits from dev on up. That's > the way we would do it as well. > > I see you say that you have builds archived as well. Do you > do this

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

2004-01-08 Thread Damir Simunic
ojectname/Latest that points to the last known good, so rollback involves just updating this vroot. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Morris, Jason Sent: Thursday, January 08, 2004 7:39 PM To: [EMAIL PROTECTED] Subject: RE: [Nant-users] Newbie qu

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

2004-01-08 Thread Damir Simunic
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Damir SimunicSent: Thursday, January 08, 2004 1:19 PMTo: [EMAIL PROTECTED]Subject: RE: [Nant-users] Newbie question on using nant to push to production I had similar experience with cruisecontrol.net: no scheduled builds,

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

2004-01-08 Thread Landes Eric (RBNA/CIT4.2)
case something came up as well. Eric -Original Message- From: Morris, Jason [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 1:39 PM To: [EMAIL PROTECTED] Subject: RE: [Nant-users] Newbie question on using nant to push to production I don't rebuild the source either. The onl

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

2004-01-08 Thread Morris, Jason
gt; >Damir From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Landes Eric (RBNA/CIT4.2) Sent: Thursday, January 08, 2004 5:22 PM To: [EMAIL PROTECTED] Subject: [Nant-users] Newbie question on using nant to push to production Just wanted to s

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

2004-01-08 Thread Landes Eric (RBNA/CIT4.2)
e-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Damir SimunicSent: Thursday, January 08, 2004 1:19 PMTo: [EMAIL PROTECTED]Subject: RE: [Nant-users] Newbie question on using nant to push to production I had similar experience with cruisecontrol.net: no scheduled bui

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

2004-01-08 Thread Landes Eric (RBNA/CIT4.2)
EMAIL PROTECTED]Subject: RE: [Nant-users] Newbie question on using nant to push to production We did not do an evaluation between the two because we only knew of Draco.NET at the time we were looking for a tool like this.  Then a new developer joined the group that had experience

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

2004-01-08 Thread Landes Eric (RBNA/CIT4.2)
-Original Message-From: Damir Simunic [mailto:[EMAIL PROTECTED]Sent: Thursday, January 08, 2004 1:12 PMTo: [EMAIL PROTECTED]Subject: RE: [Nant-users] Newbie question on using nant to push to production Eric,     The step that moves the results to production is different t

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

2004-01-08 Thread Damir Simunic
dates from past summer, don't know if they improved since. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Morris, JasonSent: Thursday, January 08, 2004 7:07 PMTo: [EMAIL PROTECTED]Subject: RE: [Nant-users] Newbie question on using nant to push to production We did not d

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

2004-01-08 Thread Damir Simunic
, as I don't know how often do you push your builds to production.     Cheers,   Damir   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Landes Eric (RBNA/CIT4.2)Sent: Thursday, January 08, 2004 5:22 PMTo: [EMAIL PROTECTED]Subject: [Nant-users] Newbie question on using na

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

2004-01-08 Thread Morris, Jason
Behalf Of Landes Eric (RBNA/CIT4.2)Sent: Thursday, January 08, 2004 10:49 AMTo: [EMAIL PROTECTED]Subject: RE: [Nant-users] Newbie question on using nant to push to production Jason, This is fantastic, almost exactly the type of thing we want to do.  And BTW, we want to have 4 environments (1

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

2004-01-08 Thread Landes Eric (RBNA/CIT4.2)
ris, Jason [mailto:[EMAIL PROTECTED]Sent: Thursday, January 08, 2004 12:23 PMTo: [EMAIL PROTECTED]Subject: RE: [Nant-users] Newbie question on using nant to push to production This is exactly what my group does to push several ASP.NET (C# code behinds) web application between four

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

2004-01-08 Thread Morris, Jason
t deployed anywhere, but get consumed by other projects.   I hope this helps.   Jason From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Landes Eric (RBNA/CIT4.2)Sent: Thursday, January 08, 2004 9:22 AMTo: [EMAIL PROTECTED]Subject: [Nant-users] Newbie question on using nant to pus

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

2004-01-08 Thread Landes Eric (RBNA/CIT4.2)
Title: Newbie question on using nant to push to production Just wanted to see if I'm on the right track here.  Do others use nant (in combination with something like Cruise Control.net or Draco.net) to push builds to a production environment?  I'm wanting to automate our builds hoepfully from

Re: [Nant-users] newbie question

2003-08-01 Thread Giuseppe Greco
Give look at http://developer.agamura.com/technotes Gius_. On Fri, 2003-08-01 at 16:58, [EMAIL PROTECTED] wrote: > I am new to NAnt and have been given the task of making this tool work > within our enterprise. Are there perhaps larger examples of build files > that contain multiple tasks and sol

[Nant-users] newbie question

2003-08-01 Thread michaelrudge
I am new to NAnt and have been given the task of making this tool work within our enterprise. Are there perhaps larger examples of build files that contain multiple tasks and solutions that are available to view to get a better handle on the syntax and the power of this tool? Thanks Mike --

[Nant-users] Newbie question

2003-03-03 Thread Dan Williamson
I need to create a web service based build tool for my company. I have already done the VB6 / C++6 side of the equation, painfully and using quite a brutal method.   I need now to add .NET projects to my autobuild web service. Can I use the NAnt code directly from my .NET web service to com