Is there any free, small, fast, thing for compiling C# .net 3.5 console apps on Windows? I want something to write c# windows consol apps using ffmpeg (using tao framework) on my home eee pc; can anyone help me with it?
views:
182answers:
4
+20
A:
Sure, csc.exe
It's the official C# compiler, included with the .net installation, and what Visual Studio uses--but you can easily use it from the command line:
Command-line Building With csc.exe
Update: another useful tool, which might be more of what you're after (and is still supported/maintained) is LINQPad. It's main purpose is for building LINQ statements, but it's fully capable of executing regular .NET code as well.
STW
2010-07-17 17:31:36
Included with .NET, which you can download and install (for free) from http://www.microsoft.com/downloads/details.aspx?FamilyID=9cfb2d51-5ff4-4491-b0e5-b386f32c0992
emddudley
2010-07-17 18:20:47
+8
A:
You can also use mono, it's a free, small and fast thing. It's open source and can be downloaded from www.mono-project.com
Pierre 303
2010-07-17 17:35:13
+2
A:
I think csc.exe is the first option.
But for ide, debug and edit you can use ShapDevelop. http://www.icsharpcode.net/opensource/sd/
x77
2010-07-18 09:55:59