Are there any IDEs out there apart (from Visual Studio) that will let you build IL assembler files right out of the IDE?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 0 down vote accepted

MonoDevelop supports building .NET languages using the Mono compiler, and is available on Linux, Mac OS, and Windows. According to the package description, many .NET languages are supported, including ILasm:

MonoDevelop is a GNOME IDE primarily designed for C# and other CLI (.NET) languages.

It supports the following languages: C, C++, C# (1.0, 2.0 and 3.0), Vala, Boo, Java, Nemerle, ILasm, ASP.NET and VB.NET.

Features: Debugger Integration (Mono Debugger and GNU Debugger), Class Browser, Assembly Browser, Built-in Help, Monodoc Integration, Code Completion (also known as IntelliSense), Code Folding, Color Schemes, Code Refactoring, On-the-fly error underlining, XML Editing, Embedded HTML viewer, Gettext support, GTK# Designer, MSBuild project support and Makefile Generation.

link|improve this answer
I said building IL assembler, not C# or VB.NET :) – plaureano Apr 29 '11 at 5:14
@plaureano: ilasm is supported as well, I've updated my answer with the description for the Linux package. I haven't used MonoDevelop for building outside of C# files, so I'm not sure exactly what the process for ilasm is. – Scott Wegner Apr 29 '11 at 5:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.