Why the .NET Framework Class Library is not open source? What do they actually have to "hide"? The runtime is closed source, I understand that, but the class library? Why isn't it open source? If it was open source, people would improving things in the BCL, fixing bugs and etc...
|
|
|||||
|
closed as subjective and argumentative by bdukes, Jay Riggs, Erich Mirabal, Joel Coehoorn, Daniel Pryden Oct 29 at 21:23 |
|
|
The source is openly available (though with a very restrictive license) for the following components of .NET
However, Microsoft has lots of legal and business concerns about exposing their code and accepting code from non-Microsoft sources. |
||||
|
|
|
It's not that they are hiding anything; .NET is a product that Microsoft makes, owns, and sells. Some of the .NET framework has been reproduced independently outside of Microsoft (eg, Mono) and some parts have open licenses, but many parts are very, very Microsoft and Windows specific, and have cost Microsoft a lot of time, money, and effort to develop (such as WPF and associated technologies.) They're free to do what they please with it. In addition, by not placing it under an open source license, they're free to do whatever they like to it the future, confident that no one outside of Microsoft has had access to it. They can maintain their own QA policies and practices, without worrying that someone has poisoned the code and it was missed. They also don't have need nor has any real inclination to let anyone else mess with their libraries that they have to support. With open source, there's no guarentee that the author will help you fix it in the future. Microsoft makes a large chunk of money off support contracts that guarentee exactly that promise. By keeping it closed source, they have very tight control over the whole fix/repair/maintenance process. They can also keep the framework exactly the way they want. With an open source project, anyone could take the project and make changes to it - small ones (bugfixes), medium ones (slight modification of libraries), or large ones (forks of the entire codebase). That would create a fractured framework of code associated with them, but not written or even designed by them. When it's closed source, all mistakes are theirs to own, and all successes are theirs to own as well. Then, there may be licensing deals on top of all the other concerns (contracts with employees, outside workers, and so on) that would restrict or prevent parts or all of the library from being released. |
||
|
|
|
I think there are some pretty obvious reasons.. Why share what you are making decent money off of? There are similar libraries that enhance and add on to the .net experience that are open source. Take NetTiers for example, it is opensource and has tons of libraries that are very useful. |
|||
|
|
