vote up 1 vote down star
1

If you were given a new computers with Windows ( XP or Vista ) and had to install a development system for C# which used as little as it could of stuff created at Microsoft, how would you do it?

PS: I want to make clear ( since it seems I initially didn't ), I do not mean an IDE. I mean a system. Suppose I install XP or Vista without installing .Net.

What "components" ie compilers, runtimes and libraries do I have to install to make develop in C# and how can i do it using as few Microsoft products as I can.

flag

6% accept rate
4  
Why are you using Microsoft Windows XP or Vista, in that case? Use a "Microsoft-less" OS. – Cerebrus May 28 at 8:20
I do, much of the time, but there are times when I am using a MS OS and would like to have a development system which does not tie me to a MS OS. – BubbaT May 28 at 18:18
After your "PS", my answer is still 'the answer'; simply because There are only two ways to really use C# - and one of those is using Mono for their open-source port of the .NET Framework and using them to compile. – George Stocker May 29 at 10:52

7 Answers

vote up 22 vote down

The question is, Why aren't you using Microsoft products for a product created by Microsoft?

If the answer is cost then have a looksee at the free version of the C# IDE and Compiler, Visual Studio Express.

If there are other reasons, then you can always use your own text editor, download Mono and get the Mono C# compiler and compile everything yourself. If you're looking for an alternative IDE, SharpDevelop is available.

link|flag
Because Microsoft products have a way of forcing people to stay with Microsoft products, even when they don't want to. – BubbaT May 28 at 18:32
7  
@BubbaT: er... then why use C#? C# is a Microsoft developed language... and there is a non-Microsoft language that is quite similar to it (Java). – R. Bemrose May 28 at 18:50
I know this is an old question, but just want to make the point that C# != Microsoft. Mono and DotGNU are great implementations of both C# and the CLI specification. Worth nothing too that, unlike Java, C# is an ISO standard as well as an ECMA Language (like JavaScript). There are some really great reasons to use it even if you have no interest in writing software for (or on) Microsoft platforms. – Iain Collins Nov 20 at 17:04
vote up 6 vote down

In terms of development IDE one of your best bets would be SharpDevelop

If you want to go a step further and not even use the Microsoft compiler you can use Mono (C# only).

link|flag
vote up 5 vote down

The .NET Framework itself comes with a compiler and build system (csc/msbuild, the equivalent of gcc/make) built in. It's in C:\Windows\Microsoft.NET\v3.5. All you really need to build .NET code is a copy of Notepad (or preferably, Vim)

link|flag
vote up 2 vote down
link|flag
C#Builder is no longer available. – Nathan Ridley May 29 at 5:39
vote up 1 vote down

I have heard about Sharp develop

link|flag
vote up 1 vote down

You could use Eclipse, Mono and a C# plugin. For the more complex stuff you could use the command line for compiling.

link|flag
vote up 0 vote down

I had used ASP.Net Web Matrix to develop some web site in c#1.0 years ago. Its free, lite & easy to use.

link|flag
But it's completely obsolete and only supports ASP.NET 1.0. And anyway, it is a Microsoft product ;) – Thomas Levesque May 28 at 8:07
Ok .. wasnt aware of that ... had used it in 2005 ... so its pretty old i guess considering the frequency with which microsoft launches new versions and tools .. :D – Rashmi Pandit May 28 at 8:09

Your Answer

Get an OpenID
or

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