Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install .NET Framework 3.5 SP1 into Visual Studio 2017

I am migrating a project from VS 2008 to VS 2017.

When I opened the project in VS2017 I was prompted if I wanted to update it to 4.6.1, or keep it as 3.5.

I chose to keep it at 3.5 and a browser window opened to this page: https://www.microsoft.com/net/download/visual-studio-sdks

Presumably that is to download 3.5. However, there is no "Developer Pack" for 3.5.

enter image description here

So I don't have clear idea of what to do.

Here are some additional notes: There is not solution file in this project. I opened it in VS2017 using File -> Open -> Website...

I am willing to update to 4.6.1. I am deploying to IIS 8.0.9200 if anyone has additional tips on updating to 4.6.1.

I am a long time coder, but I am new to windows development so if your answers can use terminology that I see on the screen then it will be helpful for me to understand the answers.

to move forward I choose to update to 4.6.1 because the screen explicitly stated I could move back to 3.5.

like image 846
Be Kind To New Users Avatar asked Dec 03 '17 18:12

Be Kind To New Users


People also ask

How do I know if NET Framework 3.5 SP1 is installed?

NET 3.5 is installed by looking at HKLM\Software\Microsoft\NET Framework Setup\NDP\v3. 5\Install, which is a DWORD value. If that value is present and set to 1, then that version of the Framework is installed.

Is .NET Framework 3.5 SP1 still supported?

2 or later by April 26, 2022 to continue receiving technical support and security updates. . NET Framework 3.5 SP1, beginning with Windows 10 version 1809 and Windows Server 2019, is a standalone product and receives 5 years of mainstream support followed by 5 years of extended support.

What is Microsoft .NET Framework 3.5 SP1?

NET Framework 3.5 Service Pack 1 is a full cumulative update that contains many new features building incrementally upon . NET Framework 2.0, 3.0, 3.5, and includes cumulative servicing updates to the . NET Framework 2.0 and . NET Framework 3.0 subcomponents.


1 Answers

You should install the .NET 3.5 development tools using the Visual Studio Installer.

Instructions:

  1. Close Visual Studio (the next step will close it for you, but it's better to close it yourself so you are in a known state).
  2. Open the Visual Studio Installer (search for it in the Start menu).
  3. Choose to modify the installation you desire.
  4. Go to the "Individual Components" tab.
  5. Under the ".NET" section choose ".NET Framework 3.5 Developer Tools".
  6. Click "Modify" in the bottom right corner to apply the changes.

You may also need to turn on the Windows Feature .Net Framework 3.5 (includes .NET 2.0 and 3.0).

like image 188
tambre Avatar answered Sep 30 '22 11:09

tambre