Marcin M
Marcin M

Reputation: 375

How to upgrade MVC 3 project to .NET 4.5 [NOT to MVC 4]

How to upgrade MVC 3 project to .NET 4.5? Which assemblies should I update?

I've change <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>

but still it's not enough.

Upvotes: 3

Views: 1431

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038720

Which assemblies should I update?

You should not update any assemblies. Just change the Target Framework in the properties of your MVC project:

enter image description here

Upvotes: 4

Related Questions