0

I have an existing project built in Visual Studio 2012 with VC++, which works fine on Windows 7 or higher versions. But when running on Windows XP, it gives an error that the application needs .NET framework v4.0 or higher to run. I am unable to install .NET Framework v4.0 on that system either.

So, the problem is that I want to downgrade my project's Target Framework Version, and I could not find any way to do it in Visual Studio 2012 - Windows Forms Application project.

Is there an alternate or better solution?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Hemendra Sharma
  • 1,063
  • 9
  • 21

1 Answers1

0

You must compile two applications, one for Windows 7 or higher and one for lower than Windows 7.

For changing your application .NET Framework follow the below address

[On Menu Bar]

Project -> "Your Application Name" Properties -> Application

And change

"Target Framework"

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
ali.alikhani
  • 185
  • 1
  • 2
  • 9