vote up 2 vote down star

I know this question has been asked, but I found out that microsoft has recently released the source code for the entire .Net Framework. I was wondering that since now this source is available, if it was possible to download all dependent files from microsoft's code server, and somehow make a native executable that is not needing clr, or jit to run, a bit like a cpp exe.

Thanks

flag

43% accept rate
1  
IMHO Microsoft has not released the source code for all the .NET FW. The source is available for mscorlib.dll, System.dll, System.Data.dll, System.Drawing.dll, ,System.Web.dll, System.Web.Extensions.dll, System.Windows.Forms.dll, System.Xml.dll, all WPF DLLs (System.Windows.dll, System.Printing.dll, System.Speech.DLL, UIAutomation.DLL, WindowsBase.DLL, WindowsFormsIntegration.DLL, Presentation*.DLL) and Microsoft.VisualBasic.DLL. They have also released ASP.NET MVC as an open source project. – kay.herzam Aug 21 at 14:06
Duplicate: stackoverflow.com/questions/1188006/… – Richard Szalay Aug 21 at 14:10
@Richard, I don't think this is an exact duplicate. This question is saying that does the availability of the .Net framework source code change make the problem any more solvable. The referenced question is saying "i have my source, I want a single executable" – JaredPar Aug 21 at 14:14

5 Answers

vote up 4 vote down check

No it does not for a couple of reasons.

The first problem is that the source is released under the Reference License (Reference).
I'm not a lawyer but my understanding of that license is that it does not allow for redstribution of the content.

Secondly it doesn't add any new and useful data to the equation. A program which essentially combines an executable and all of it's dependencies into a single and independent executable is doing an operation that is very similar to the CPP linker tool. That is combining a binary and all of it's dependencies into a single executable in the absence of source code.

All of the dependency information in .Net assembly can be determined by examining the metadata of an assembly. The source really adds no value here .

The source code for the .Net framework is really only useful if you want to write a new compiler altogether which combines it into one assembly. Even then you would still need a linker style solution to get the CLR into the same executable.

link|flag
vote up 2 vote down

Simply no. The source code that has been released is for the framework (and not all the framework), not the .NET runtime itself. Therefore the code that you can get from Microsoft still needs .NET to be installed to run and doesn't get you any closer to a native application.

link|flag
vote up 1 vote down

Are you referring to the for-debug-purposes only distribution of certain framework source files?

These aren't complete (notably, they're missing sections written in native code, and they further comprise only the class library - not the runtime itself).

If you really want this, mono is better starting place - and realize that the clr provides for things like reflection, garbage collection and code generation, so it's not just a matter of "removing it" - you'd be living in a non-compatible subset of .NET at that point.

link|flag
vote up 1 vote down

Take a look at this:

http://www.remotesoft.com/linker/intro.html

link|flag
vote up 0 vote down

Is it not good enough for you to NGEN the executable?

link|flag
1  
ngen does not remove the dependency on the CLR – JaredPar Aug 21 at 14:08

Your Answer

Get an OpenID
or

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