[MonoDevelop] bug in MonoDevelop.Projects.DefaultCompilerResult?

Ben Joldersma ben at joldersma.org
Fri Jan 11 19:44:49 EST 2008


all,

Love the latest version of MD.  Is a pleasure to work with.  I ran into a
small problem in which null errors were somehow being passed in
CompilerResults constructor param, fixed it with this little diff:

54c54
<                                       if (err.IsWarning) warningCount++;
---
>                                       if (err != null && err.IsWarning)
warningCount++;

Not sure if y'all want to make the change, but it gets my project to compile
:)

best,
--ben
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/monodevelop-list/attachments/20080111/74eee421/attachment.html 


More information about the Monodevelop-list mailing list