Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a centralized open source code repository for C#? [closed]

For Perl, there is cpan.org, where I can lookup and reuse any previously built package in my own code.

Is there a similar open source code repository for C#?


Edit: Thanks all. I also just found code.google.com.

like image 248
PatrickL Avatar asked Jan 08 '10 22:01

PatrickL


People also ask

What is the best source code repository?

Github is the largest, and most popular code repository on the web. It stores both private, and open-source projects.

Is all code on GitHub open source?

GitHub is not open source. Pragmatically, this doesn't make much of a difference to most users. The vast majority of code put onto GitHub is, presumably, encouraged to be shared by everyone, so GitHub's primary function is a sort of public backup service.

Is GitHub an open source repository?

The largest open source community in the world. There are millions of open source projects on GitHub. Join one or start your own.


2 Answers

http://www.codeplex.com/ for starters. That's the most "official" one. But you'll find numerous other resources such as sourceforge.net and CodeProject.com

Google Code also has a C# section

like image 157
Paul Sasik Avatar answered Oct 07 '22 15:10

Paul Sasik


I think your what your looking for is CodePlex.

Wikipedia Entry:

CodePlex is an open source project hosting website from Microsoft. It allows shared development of open source software. Its features include wiki pages, source control based on Team Foundation Server but accessible using Subversion, discussion forums, issue tracking, project tagging, RSS support, statistics, and releases. While Codeplex encompasses a wide variety of projects, including SQL, WPF and Windows Forms-related projects, major activities center around the .NET framework, including ASP.NET, and Microsoft's intranet collaboration server, SharePoint. The most prominent and used project that was born inside CodePlex, the AJAX Control Toolkit is a joint project between the community and Microsoft.

like image 36
Kredns Avatar answered Oct 07 '22 16:10

Kredns