Any benefit for targeting .NET Framework 4.5.1 instead of 4.5?

.net

Solution

There are two reasons I can think of:

- As Hans mentioned, if you're using one of the new API additions it's necessary. First Floor Software has a diff you can look at.

- You'll be notified if you're using an API that Microsoft has deprecated in .NET 4.5.1.

Problem

The .NET Framework 4.5.1 does not have a lot of API additions. Besides access to those API additions, is there any reason to target 4.5.1 rather than 4.5 for building? All the 4.5.1 .NET Runtime performance benefits will be obtained simply by using the new Runtime, correct?

Original source