RE: [Nant-users] Config Files?

2004-04-09 Thread Brian Beaudet
he > environment you deploy to, my program would be > completely useless to you. > > > --- Brian Beaudet <[EMAIL PROTECTED]> wrote: > > Eric, > > > > I've started using custom XML files for > > configuration purposes instead > > of the sectio

[Nant-users] Survey: Where Do You Place .build Files?

2004-04-09 Thread Brian Beaudet
I’m interested in hearing where other’s stick their .build file(s).  I’m currently housing mine in a directory one level above my source code just to keep things cleanly separated.  However, I’m starting to wonder if it’s worth it and I’m considering moving to the same level in my source co

[Nant-users] Paths Question

2004-04-09 Thread Brian Beaudet
If I use the task to make a build, how would that work if I’m grabbing the source files from version control and placing them on our build server.  Will I have to make an exact duplicate directory structure as what’s on the development machine?  Do I have to start with the same drive and w

RE: [Nant-users] Config Files?

2004-04-08 Thread Brian Beaudet
e appropriate value. I call this from > the build file for each of the systems I will deploy > to and create an NSIS installation file for each (with > appropriate config(S) contained therein). I've posted > this program before. If you want it, I can post > again. It's com

RE: [Nant-users] Config Files?

2004-04-08 Thread Brian Beaudet
eforge.net/nightly/builds) > containing this fix in a hour or so ... > > If you're using compiler tasks (eg. ), then you'll have to copy the > application configuration file using the task. > > Hope this helps, > > Gert > > - Original Message - >

[Nant-users] Config Files?

2004-04-08 Thread Brian Beaudet
I hate to think I’m posting the same old questions but I’ve searched and haven’t found much out there on this topic.  What do others do to create a programname.exe.config file from their App.config.  Is it as simple as a task?  That’s what I’m doing now.  I don’t keep much in the App.confi

[Nant-users] Class Files All Over The Place

2004-04-08 Thread Brian Beaudet
If I keep my *.cs files in different directories, is there a way to use to recursively include all *.cs files in those subdirectories?   Brian M. Beaudet Director, Research & Development EfficiencyLab, LLC www.efficiencylab.com  

RE: [Nant-users] Compiling with .NET Framework 1.1

2004-04-08 Thread Brian Beaudet
Title: Message     -Original Message- From: Brian Beaudet [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 2:47 PM To: 'Clayton Harbour' Subject: RE: [Nant-users] Compiling with .NET Framework 1.1   Thanks Clayton.   I’m not quite ready to start le

[Nant-users] Compiling with .NET Framework 1.1

2004-04-08 Thread Brian Beaudet
How do I tell NAnt to use the CSC.exe for the .NET Framework 1.1 instead of 1.0?  I’m attempting to use Nant on a machine that does not have 1.0 installed.   Brian M. Beaudet Director, Research & Development EfficiencyLab, LLC www.efficiencylab.com  

[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] Nant & Unit Tests From Conditional Compilation

2004-03-31 Thread Brian Beaudet
ing the System.Reflection namespace. Let me know > if you would like some additional help. > > Alex > > -Original Message- > From: Brian Beaudet [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 30, 2004 9:52 AM > To: [EMAIL PROTECTED] > Subject: RE: [Nant-use

[Nant-users] Is Debug Attribute Only True/False?

2004-03-30 Thread Brian Beaudet
In the following line: is the debug attribute only true or false? What if I have defined a new configuration called UnitTest (for instance)? How can I compile a configuration that is neither debug or release? Brian --- This SF.Net email i

RE: [Nant-users] Nant & Unit Tests From Conditional Compilation

2004-03-30 Thread Brian Beaudet
tion > > - Original Message - > From: "Brian Beaudet" <[EMAIL PROTECTED]> > > > What I'd like to do is make a build and run the unit tests (as a build > > verification test). Now, should I only build the UnitTest configuration > > I'

[Nant-users] Straight Answer Request For Newbie

2004-03-29 Thread Brian Beaudet
I’ve downloaded the latest release (0.84) as a zipped file.  Now what?  What the heck do I do with it?  Do I need to extract it to the C:\Program Files directory?  Do I need to put Nant.exe in every project’s directory structure in order to run Nant?  I can’t seem to find any straight answe

[Nant-users] Nant & Unit Tests From Conditional Compilation

2004-03-29 Thread Brian Beaudet
I have my unit tests (Nunit) in an inner class from my classes in order to test the private methods.  I wrap them in preprocessor directives which are defined in a configuration called UnitTest (oddly enough J ).  So, when I want to manually test my unit tests in Nunit’s GUI, I compile my a

[Nant-users] Nant: Common directory structure for VS.NET

2004-03-25 Thread Brian Beaudet
I’d like to ask this user group for advice on how they layout their directory structures when working with complex solutions.   For instance, we typically like to have (in our version control repository and then our working space) directories such as:   RepositoryRoot/     Clie