> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Narayanan Raghavan
> Sent: zondag 22 januari 2006 23:26
> To: nant-users@lists.sourceforge.net
> Subject: [NAnt-users] Build file for VB.NET web apps
> 
> Hello,
> I am a newbie to nant.  I am trying to write a build file for 
> a simple 
> VB.NET web app.  When I run nant, the corresponding resource 
> and pdb files 
> are not being generated.   I also get the error message
> "[vbc] vbc : error BC30037: Project-level conditional 
> compilation constant 
> 'DEBUG;TRACE' is not valid: Character is not valid."

For VB.NET, defines need to be separated by a comma instead of a semicolon.

For example:

<vbc define="DEBUG=True,TRACE=True" ....>
        ...
</vbc>

Gert



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to