vote up 20 vote down star
44

C# Open Source Project Of The Year Award 2008

Let us decide which project should receive the honor, from the Stack Overflow community. And as the best programming community, I think the community opinion matters.


What's the best Open Source Project you've found, and loved in 2008? List it here, and let the community vote for the same. And in the end, we'll have a great list of interesting open source projects. Your entry should have a brief description, and a link to download the source code. You might consider entries from sites like Codeplex, Sourceforge.net, Codeproject etc.


Important: Please look in the existing list before posting your entry, if it is already there, just vote.

flag
show 2 more comments

40 Answers

1 2 next
vote up 0 vote down

CodeProject

link|flag
vote up 0 vote down

DotNet Zip http://www.codeplex.com/DotNetZip

link|flag
vote up 1 vote down

Fluent NHibernate

link|flag
vote up 1 vote down

S#arp Architecture

link|flag
vote up 1 vote down

FubuMvc

link|flag
vote up 3 vote down

Stateless from Nicholas Blumhardt is an elegant implemetation of a state machine. We have used this instead of the Windows Workflow state machine. The beauty is that with very few lines of code you can configure a state machine with conditional triggers.

Below is a sample from Nicholas's site:

    enum State
    {
        OffHook,
        Ringing,
        Connected,
        OnHold,
        PhoneDestroyed
    }

    enum Trigger
        {
            CallDialed,
            HungUp,
            CallConnected,
            LeftMessage,
            PlacedOnHold,
            TakenOffHold,
            PhoneHurledAgainstWall
        }



var phoneCall = new StateMachine<State, Trigger>(State.OffHook);

phoneCall.Configure(State.OffHook)
    .Allow(Trigger.CallDialed, State.Ringing);

phoneCall.Configure(State.Ringing)
    .Allow(Trigger.HungUp, State.OffHook)
    .Allow(Trigger.CallConnected, State.Connected);

phoneCall.Configure(State.Connected)
    .OnEntry(t => StartCallTimer())
    .OnExit(t => StopCallTimer())
    .Allow(Trigger.LeftMessage, State.OffHook)
    .Allow(Trigger.HungUp, State.OffHook)
    .Allow(Trigger.PlacedOnHold, State.OnHold);

phoneCall.Configure(State.OnHold)
    .SubstateOf(State.Connected)
    .Allow(Trigger.TakenOffHold, State.Connected)
    .Allow(Trigger.HungUp, State.OffHook)
    .Allow(Trigger.PhoneHurledAgainstWall, State.PhoneDestroyed);
link|flag
vote up 3 vote down

StructureMap

link|flag
vote up 0 vote down

Rawr

I am a former wow junkie and I spent so much time hacking on this and using it, almost as much time as I spent playing wow.

link|flag
vote up -6 vote down

Java - it seems a fair few libraries are just Java ports. If it wasn't for Java there would be no .NET.

link|flag
show 4 more comments
vote up 7 vote down

SubSonic 2.2 has been very, very good to me. Great Data Access Layer generator that works very well with C#, VB, F#, MS SQL, and (after some tweaks) MySQL! The tutorial videos are excellent.

link|flag
vote up 1 vote down

ZedGraph

Well written easy to use charting package for WinForms. Better and more fully functioned than many commercial ones.

link|flag
vote up 3 vote down

ZedGraph for graphs as you might have expected ;)

link|flag
vote up 1 vote down

TracExplorer

This is a Visual Studio addin for Trac integration and, in turn TortoiseSvn's bugtraq integration.

link|flag
vote up 0 vote down

VisualWebGUI

The best of the bred Open Source RIA AJAX Framework with full server approach and zero client footprint.

link|flag
show 1 more comment
vote up 4 vote down

Windows Installer XML Toolset

Makes creating Windows Installer packages easy and similar to writing code. Uses a compile/link approach to build MSI packages from xml source. Most of the toolset is written in C#.

link|flag
vote up 2 vote down

Silverlight Toolkit

Terrarium 2.0

link|flag
vote up 6 vote down

Gallio/MbUnit

link|flag
vote up 12 vote down

NHibernate

link|flag
show 2 more comments
vote up 30 vote down

ASP.NET MVC

link|flag
vote up 3 vote down

Autofac

link|flag
vote up 3 vote down

Clone Detective for Visual Studio

Clone Detective is a Visual Studio integration that allows you to analyze C# projects for source code that is duplicated somewhere else. Having duplicates can easily lead to inconsistencies and often is an indicator for poorly factored code.

link|flag
show 1 more comment
vote up 0 vote down

Npgsql - .NET provider for the PostgreSQL object-relational database management system - a good one, too.

link|flag
vote up 3 vote down

I like http://www.dotnetblogengine.net/. It's a .net blog platform that supports MySQL which is pretty cool.

link|flag
show 1 more comment
vote up 12 vote down

CruiseControl.NET

link|flag
vote up 2 vote down

Coolite

link|flag
vote up 0 vote down

Ra-Ajax - "Create stunning and lightweight Web Applications without hassle" - Quote Me... ;)

PS! Yes I work with it...

link|flag
vote up 7 vote down

Banshee

Play your music and videos. Stay entertained and up to date with podcasts and video podcasts. Discover new music with Last.fm radio. Sync your G1 phone, iPod, and other devices. We think you'll love the new Banshee!

link|flag
2  
Also, crossplatform Linux, Mac and Windows (yet to come) – igorgue Dec 15 '08 at 19:02
vote up 40 vote down

Mono - Website Here, Download Here

I think Mono is a good bet.

As we all know, "Mono is a cross platform, open source .NET development framework."

link|flag
vote up -1 vote down

DotNetNuke, a great extensible opensource CMS system.

link|flag
show 3 more comments
1 2 next

Your Answer

Get an OpenID
or

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