Thank you for the info. It now builds fine but I now get a parser error when I start my client.
Parser Error Message: Could not load type 'GRD.Global'.

The app complies and works great when I build it through VS. I am probably missing something basic.
Thanks again for the help.


From: "Gert Driesen" <[EMAIL PROTECTED]>
To: "'Narayanan Raghavan'" <[EMAIL PROTECTED]>,<nant-users@lists.sourceforge.net>
Subject: RE: [NAnt-users] Build file for VB.NET web apps
Date: Mon, 23 Jan 2006 07:16:41 +0100



> -----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




-------------------------------------------------------
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