Change the project do.NET 4.5 to 4.5.2, how to do?

I installed .NET 4.5.2 on the machine, restarted Windows 7 and, after opening the project, went in Debug > Projeto.Properties > Application and tried to change the version by Combo Target Framework, but there does not appear version 4.5.2 .

I've looked at Regedit and .NET is up to date there, I've also tried reinstalling it and it asks to repair, which indicates the installation of this version.

My Visual Studio is 2013 with update 3, the operating system is Windows 7 Ultimate.

In addition to installing, need to do something to be able to change the .NET version of the project?

Author: Maniero, 2014-08-27

1 answers

If you have already installed Microsoft .NET Framework 4.5.2 Developer Pack everything is correct and you do not need to do anything else .

You develop for version 4.5. Version 4.5.2 is only an update in-place fully compatible with 4.5. That is, if you develop for 4.5, it will run well in 4.5, 4.5.1 or 4.5.2 and even in 4.5.3 if it comes to have. Your application will use the most current version that is installed on the user's machine. When you define that you're using version 4.5 in your application, you're just saying you can't use an earlier or incompatible version (a future version 5, for example, could be incompatible with 4.5). You don't have to worry about micro-versions. I'm glad.

 6
Author: Maniero, 2020-09-07 17:33:49