Bugs item #895822, was opened at 2004-02-12 17:14
Message generated for change (Settings changed) made by drieseng
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=895822&group_id=31650
Category: None
>Group: 0.85
Status: Open
Resolution: None
Priority: 5
Submitted By: Jos Clijmans (clijmans)
>Assigned to: Gert Driesen (drieseng)
Summary: solution task generates invalid baseaddress
Initial Comment:
The solution task reads the vbproj file and extract the
configuration settings. It later uses these settings to
call the vbc task.
The baseaddress in the vbproj file is in decimal format,
the baseaddress option of vbc expect the baseaddress
to be in hexadecimal format.
This results in a good compile, but a crash at runtime.
Fix : add following lines in ConfigurationSettings.cs on
line 95
// Added following lines
if (de.Key.ToString() == "BaseAddress")
{
int intvalue = Convert.ToInt32(value);
value = intvalue.ToString("x");
}
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=402868&aid=895822&group_id=31650
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers