Re: [Nant-users] Defining : Conditional Compilation Constants

2003-07-31 Thread Eric Fetzer
lready be a workaround.I was actually looking for the task. Is there someting similar for this task?Rergards,l.a.marco>From: "N. V." <[EMAIL PROTECTED]>>To: [EMAIL PROTECTED], [EMAIL PROTECTED]>Subject: Re: [Nant-users] Defining : Conditional Compilation Constants>Date: T

Re: [Nant-users] Defining : Conditional Compilation Constants

2003-07-31 Thread Marco Ensing
To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [Nant-users] Defining : Conditional Compilation Constants Date: Wed, 30 Jul 2003 18:00:26 -0700 Hi All, I'm a bit new to Nant, so this might be a stupid question. (although I am an experienced ant user) I'm using #if statements to condition

Re: [Nant-users] Defining : Conditional Compilation Constants

2003-07-30 Thread N. V.
Hi Marco, The define attribute of the task is what you are looking for. see http://nant.sourceforge.net/help/tasks/csctask.html for the help of the csc task. Nick From: "Marco Ensing" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [Nant

[Nant-users] Defining : Conditional Compilation Constants

2003-07-30 Thread Marco Ensing
Hi All, I'm a bit new to Nant, so this might be a stupid question. (although I am an experienced ant user) I'm using #if statements to conditionaly compile part of my code like #if DEBUG //no signing of assembly [assembly: AssemblyKeyFile("")] #else [assembly: AssemblyKeyFile("../../secret.snk")