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

6

I installed .NET 4.5.2 on the machine, I rebooted Windows 7 and, after opening the project, I went in Debug > Projeto.Properties > Application and tried to change the version with the Target Framework combo, but there is no version 4.5. 2.

I have already looked at Regedit and .Net is up to date there, I also tried to reinstall it and asked to repair, which indicates the installation of that version.

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

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

    
asked by anonymous 27.08.2014 / 19:20

1 answer

6

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

You develop to version 4.5. Version 4.5.2 is just an in-place update that is fully compatible with 4.5. In other words, if you develop for 4.5, it will run well in 4.5, 4.5.1 or 4.5.2 and still in 4.5.3 if it does. Your application will use the most current version that is installed on the user's machine. When you define that you are using version 4.5 in your application, you are only saying that you can not use an earlier or incompatible version (a future version 5, for example could be incompatible with 4.5). You do not have to worry about micro-versions. Still good.

    
27.08.2014 / 19:26