Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which download for .net source

Tags:

.net

Following this question, looking here http://referencesource.microsoft.com/netframework.aspx you see this list currently:

  • Product Name Version View Download
  • .NET 8.0
  • dotnetfx1434_VistaWin2k8sp1 50727.1434
  • FXUpdate3074 50727.3074
  • ASP.NET_MVC 1.0
  • WCF 3.5SP1
  • WF 3.5SP1
  • Dotnetfx_Vista_SP2 50727.4016
  • Dotnetfx_Win7_3.5.1 3.5.1
  • ASP.NET_MVC 2.0
  • .Net 4
  • .NET_3.5_sp1_redist 50727.3053
  • ASP.NET_MVC 3
  • Netfx_3.5.1_Win7SP1 3.5.1
  • NET 4.5
  • Net 4.5Update1

I'm not sure what ones I need to download. I have VS2010 and VS2012. Net 4.5Update1 sounds good for VS2012, but after download the read me says "Seamless Integration with Visual Studio 2008/2010", but I assume that's just out of date readme.

What is .NET 8.0? and why are there so many different 3.5 versions?

like image 606
weston Avatar asked May 21 '13 09:05

weston


People also ask

How do I download .NET Framework?

on your keyboard, type "Windows Features", and press Enter. The Turn Windows features on or off dialog box appears. Select the .NET Framework 3.5 (includes .NET 2.0 and 3.0) check box, select OK, and reboot your computer if prompted.

What is .NET open-source?

. NET is a free, cross-platform, open source developer platform for building many different types of applications. With . NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, games, IoT, and more.

What is .NET Core download?

ASP.NET Core Runtime 3.1.30 The ASP.NET Core Runtime enables you to run existing web/server applications. On Windows, we recommend installing the Hosting Bundle, which includes the .NET Runtime and IIS support.

Which software is used for .NET programming?

Microsoft Visual Studio NET Framework in Visual Studio, but Visual Studio is built with . NET. The program achieves many innovations using programs like Windows API, Windows Forms, Windows Presentation Foundation, Windows Store, and Microsoft Silverlight.


1 Answers

You get to see all the service packs, security updates and specific versions that come preinstalled with Windows. Which is in general a problem with the Reference Source, they are always behind and source stepping tends to not work because of a version mismatch with the actual version of .NET you have on your machine. I only ever got it to work once and that didn't last long.

.NET 8.0 is mislabeled with the VS version, version 8 was VS2005 and supported .NET version 2.0

Low expectations are recommended, the source is most useful for reading and searching. A completely different approach is a decompiler that recovers the source code from the actual .NET assemblies at debug time. Reflector has that feature, not otherwise an endorsement.

like image 102
Hans Passant Avatar answered Nov 05 '22 23:11

Hans Passant