Aleen
Aleen

Reputation: 15

Can't work on my project after updating to Visual Studio 2022

I recently updated from Visual Studio 2019 to Visual Studio 2022. Thing is, I can't load previously created projects. IDE pops up a message asking for me to either install .NET Framework 4.7.2 compatibility pack or update the project to .NET Framework 4.8

I've already installed .NET Framework 4.7.2 (as shown below), but it doesn't seem to detect it. The dialog just keeps popping even after rebooting.

Updating the whole thing to 4.8 is out of question since it is a group project where Visual 2019 is still being used.

Screenshot (sorry it is in spanish, I highlighted the important stuff)

Upvotes: 1

Views: 1670

Answers (1)

jessehouwing
jessehouwing

Reputation: 114641

Make sure you install the optional workload ".NET Framework 4.7.2 Targeting pack" as well as the SDK in case in the Visual Studio 2022 installer:

enter image description here

Similarly, you could install the 4.8 targeting pack into Visual Studios 2019 on your colleagues machines

Upvotes: 2

Related Questions