Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the .net 3.5 SDK?

Tags:

Can anyone please provide a link to download the .net 3.5 SDK? I checked the MS site and google but cannot find a download link for this.

Thanks...

like image 455
DenaliHardtail Avatar asked May 10 '09 05:05

DenaliHardtail


People also ask

Where is .NET SDK installed?

You can see all the installed SDKs under "C:\Program Files\dotnet\sdk". First, we are going to see how we can view our current SDK version on the machine. By default, it will be the latest installed version (the SDK you installed at last).

Where is .NET Framework 3.5 located?

NET Framework 3.5 is contained in the default Windows image (\sources\install.

How do I know if .NET SDK is installed?

You can see both the SDK versions and runtime versions with the command dotnet --info .

What is Microsoft .NET SDK?

The software development kit (SDK) includes everything you need to build and run . NET applications, using command-line tools and any editor (like Visual Studio). Runtime (Windows) The runtime includes everything you need to run . NET applications.


2 Answers

Update 2020: I can confirm that this option is still valid in VS 2019 (Enterprise and Professional at least) enter image description here

In VS2017 Tools Menu >> Get Tools and Features...

Then in the VS Installer window select the "Individual Components" tab and make sure you have ".NET Framework 3.5 development tools" checked and installed

enter image description here

like image 81
Geordie Avatar answered Sep 27 '22 20:09

Geordie


The link above is good, here is a link that contains links to every Microsoft based SDK. It is kept fairly up to date.

http://msdn.microsoft.com/en-us/dd299405.aspx

Edit If you are cutting edge. Meaning wanting to start programming for features in Win 7, server 2008 r2. this would be a link with the latest and greatest. at RC level. (although Win 7 is released with .net 3.5 sp1)

http://www.microsoft.com/downloads/details.aspx?FamilyID=6db1f17f-5f1e-4e54-a331-c32285cdde0c&displaylang=en

In addition this link is also nice.

http://code.msdn.microsoft.com/WindowsAPICodePack

Contains .net wrappers to most of the new features in win 7.

like image 45
DouglasH Avatar answered Sep 27 '22 19:09

DouglasH