I want to build projects from command line. Is it possible to deploy c# compiler without installing Visual Studio?

link|improve this question

3  
+1 for being hardcore like that ;-) – Lucas McCoy May 14 '09 at 3:20
1  
hehe, I find it funny how people associate the IDE with the actual development platform and/or language. – Soviut May 14 '09 at 3:34
feedback

8 Answers

up vote 10 down vote accepted

Sure, the framework includes a compiler, csc.exe. Look at this article for a quick how-to and this MSDN article for a full guide and explanation.

link|improve this answer
Is it possible to compile a solution not just .cs files? – SeasonedCoder May 14 '09 at 3:42
Yes, that's what msbuild.exe is for. (It can definitely handle .csproj, and I think maybe .sln too.) – Brian May 14 '09 at 8:39
MSBuild has no problems with .sln files – DaveE May 18 '09 at 21:59
feedback

Of course. Do:

sudo apt-get install mono-gmcs

Everyone else assumed Windows and MS .NET, but...

link|improve this answer
1  
+1 for out of box thinking – Greg Ogle May 14 '09 at 3:31
+1 for Ubuntu... :) – Dave Swersky May 14 '09 at 3:39
feedback

Yes, if you have .net sdk, it's there, e.g.

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe

msbuild.exe should be there too, and you can use that to build project (.csproj) files.

link|improve this answer
2  
csc.exe is included in the .NET Framework, what most people think of as the runtime. You don't need the SDK to get the compiler. Let me say that again: you don't need the SDK to get the C# compiler. The VBC and CSC compilers come with the .NET Framework. – Cheeso May 19 '09 at 1:16
feedback

Contrary to what some of the other answerers say, you do NOT need the SDK, just the Framework to get the csc.exe C# compiler.

Also, consider other (free) IDEs like MonoDevelop, #develop, and Visual C# Express. (You said you don't want Visual Studio, not that you don't want an IDE at all ;) )

link|improve this answer
feedback

Yes, there is even a open source IDE Sharpdevelop you can set the compiler as a command in Ultraedit (or some other editor of preference) etc.

link|improve this answer
feedback

You only need the FrameWork. You can use a notepad to edit and the CSC.exe to compile.

Best Regards!

link|improve this answer
feedback

Yes, but you need to download and install .NET Framework SDK.

Here's a link that can help you.

link|improve this answer
you don't need the sdk, but it does give you the command-line environment which makes building easier – benPearce May 14 '09 at 3:41
feedback

Like some others have mentioned MSBuild is deployed with the .NET Framework (versions 2.0 and 3.5) so if you have either of those installed you can build your applications without needing Visual Studio installed on the machine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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