[Mono-devel-list] MBuild preview release 0.0.2

Ian MacLean ianm at ActiveState.com
Tue Feb 10 01:28:17 EST 2004


Peter,

you should be aware that constructs like the following :

using System;
...
Text.StringBuilder sb = new Text.StringBuilder ();

do not compile under ms.net ( csc.exe ). You need to explicitly import 
the whole namespace like:

using System.Text;
...
StringBuilder sb = new StringBuilder ();

the fact that it compiles with mcs is really a bug. I logged this a 
while ago http://bugs.ximian.com/show_bug.cgi?id=52622 but forgot to 
notify you as well.

Ian


Peter Williams wrote:

>Hi everyone,
>
>I've posted an updated preview of MBuild, my fancy slicey-dicey build
>tool at:
>
>	http://www.newton.cx/~peter/software/mbuild-0.0.2.tar.gz
>
>As before, see doc/Manifesto.txt in the tarball for an explanation of
>what I'm trying to accomplish with MBuild.
>
>There's been a lot of work under the hood: there's now a nice system for
>executing tools, with classes for filtering their output a la grep and
>sed; the beginnings of the configury mechanism are in place; the logging
>and error reporting infrastructure is working now; and I have target
>'tags' working although there isn't much fancy going on so far.
>
>As in the first release, there's a walkthrough in the file TUTORIAL.
>It's been updated to demonstrate the new features in this release.
>
>I'd be glad to answer any questions or comments that come up. MBuild
>still has a user base of exactly 0, but the infrastructure is coming
>along nicely. Still, on the whole, MBuild won't change your life ...
>*yet*.
>
>Peter
>
>  
>


-- 
Ian MacLean, Developer, 
ActiveState, a division of Sophos
http://www.ActiveState.com




More information about the Mono-devel-list mailing list