1

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

plaureano
  • 3,139
  • 6
  • 30
  • 29

1 Answers1

0

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.

Scott Wegner
  • 7,263
  • 2
  • 39
  • 55
  • I said building IL assembler, not C# or VB.NET :) – plaureano Apr 29 '11 at 05: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 05:32