2
votes

I'm currently using Visual Studio 2015 with framework version 4.6.1. I need to use TLS 1.2 with my app. From what I've read, TLS 1.2 is the default with framework version 4.6.2. But, that version isn't listed in visual studio:

VS 2015 Frameworks listed in my project properties

I downloaded the 4.6.2 installer, but when I try to install it, the installer indicates: ".NET Framework 4.6.2 or a later update is already installed on this computer."

So, my questions are:

1) Can framework 4.6.2 be used in VS 2015? (if so, what do I have to do?) 2) Can I use TLS 1.2 with the framework 4.6.1?

Appreciate any help!

1
Are you trying to install the actual Framework or the Targeting Pack?jmoerdyk
Thanks - apparently it was the "targeting pack" that I needed, not just the framework. I installed it, and 4.6.2 is now available!Bert Sirkin

1 Answers

1
votes

You probably need to install the 4.6.2 SDK. It includes the reference assemblies for 4.6.2, which is what Visual Studio needs in order to target 4.6.2 for builds.

SDKs for all .NET versions (3.5+) are available from the .NET SDKs for Visual Studio page.