[MonoDevelop] build errors
Kris Luyten
Kris Luyten <kris.luyten@gmail.com>
Sun, 29 Aug 2004 00:47:45 +0200
On Sat, 28 Aug 2004 15:35:59 -0700, gennady wexler <adyler@winisp.net> wrote:
> I check everything out of
>
> apple:~/mono adyler$ svn co
> svn://www.monodevelop.com/svn/monodevelop/trunk/MonoDevelop
> Checked out revision 1947.
>
> then build and getting this build error:
>
> ././MonoDevelopOptions.cs(13) error CS0246: Could not find attribute
> 'Option' (are you missing a using directive or an assembly reference ?)
You can remove this line to make it compile:
in src/Main/StartUp/MonoDevelopOptions.cs
change line 13 from
[Option ("Do not display splash screen.")]
to
//[Option ("Do not display splash screen.")]
This works for me and I don't think it breaks anything else(?)
Regards,
Kris