Mohan Lalwani
Mohan Lalwani

Reputation: 57

.NET FRAMEWORK 4.6.1 is not supported on this operating system - for Software Developer through Visual Studio Community 2017

I have developed software using C# on Visual Studio Community 2017 on Windows 10 Operating System.

My client is having Windows 7 Ultimate - (Not SP1)

and is getting below message: NET FRAMEWORK 4.6.1 is not supported on this operating

What settings should I use in Visual Studio so that it will not ask to install 4.6.1

In project Application tab,I already selected Target Framework as .NET Framework 3.5 as below

enter image description here

,still it's asking :

enter image description here

Any help is highly appreciated.

Upvotes: 0

Views: 3279

Answers (1)

gilliduck
gilliduck

Reputation: 2933

Microsoft tells it best at https://msdn.microsoft.com/en-us/library/bb398202.aspx but to sum it up:

  1. Right Click the solution and choose Properties
  2. Select the Application tab
  3. In the Target Framework dropdown list choose the framework that you know to be the minimally installed version on your target computer(s).

Also, when creating your new project, you have the option at that time to select the targeted framework.

Upvotes: 3

Related Questions