Re: [NAnt-users] examples of Environment Config Files

2009-02-06 Thread Steve Kapinos
I don't undertand why this isn't just taking in parameters and using them as variables in the build file. Do conditional checks if need be to block out parts not needed, etc. My environment is setup so the core of the task is as modular as possible.. and just have different targets do differen

Re: [NAnt-users] Need Help with Including Config File in Build File

2009-02-06 Thread Bob Archer
Because one file has a namespace and the other doesn't. The namespaces much match. BOb Usadev.config http://nant.sf.net/release/0.85/nant.xsd";> -- Create and Deploy Rich Internet Apps outside th

[NAnt-users] Need Help with Including Config File in Build File

2009-02-06 Thread Zachary B. Wheeler
I have created a build file (script.build) and everything worked fine. Then I stripped out the properties and included them in another file called usa.config. I put an then I tried to use the properties and I keep getting the following error:Property has not been set. Below is the code for th

Re: [NAnt-users] examples of Environment Config Files

2009-02-06 Thread Brass Tilde
> environment config files. In my case I have a lot of the individual task > doing what they are suppose to do. However, if my supervisor puts in > Nant -D:tag=/src/Test/tags/Star1_1.0 env=prod then he wants it to point to > the production environment and run my existing task, env=dev then he want

Re: [NAnt-users] examples of Environment Config Files

2009-02-06 Thread Brass Tilde
Config files for specifically what purpose? Pointing to different databases or other resources? Options that should only appear in one environment? /bs -- Create and Deploy Rich Internet Apps outside the browser with Ad

[NAnt-users] below are some more helpful task: Register DLLS, Unregister DLLS, Restart IIS, Compile VB6 program using Nant and NantContrib

2009-02-06 Thread Zachary B. Wheeler
Someone may find these useful --

[NAnt-users] examples of Environment Config Files

2009-02-06 Thread Zachary B. Wheeler
Hi Wanted to know if anyone has any existing development and production config files that I can view. I am new here only a week but I have to now create dev and production config files . just need to take a look at how they are set up. Regards Zac --

[NAnt-users] Accessing Properties Solved - thanks Chris

2009-02-06 Thread Zachary B. Wheeler
In the script task or scriptMain C#: project.Properties["Property Name"] Vb.net: project.Properties("Property Name") -- Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adob

[NAnt-users] question or help on ScriptMain(project as Project)

2009-02-06 Thread Zachary B. Wheeler
Has anyonepassed project parameters before if so what is the syntax. The link to this broken on the Script Task Reference page. I thought that in the ScriptMain(project as Project) that I could use any of the available properties in the build file. For instance Then in Public Sh

[NAnt-users] Just Some Targets that i have working that might help someone else out

2009-02-06 Thread Zachary B. Wheeler