Raúl Otaño
Raúl Otaño

Reputation: 4770

Changing the target framework from 4.5 to 4.0

In an .NetFramework application, why when, after changing the target framework from 4.5 to 4.0, the app still references 4.5 framework libraries? Is there a way for solving this?

Upvotes: 1

Views: 616

Answers (1)

ProgramFOX
ProgramFOX

Reputation: 6390

.NET 4.5 is a replacement for .NET 4.0. So, when you change the Target Framework, it will still use the files of .NET 4.5, because they replaced the files of .NET 4.0. But don't worry, when changing the Target Framework, your app should work perfectly on a computer where only .NET 4.0 (not 4.5) is installed.

Upvotes: 1

Related Questions