user5567848
user5567848

Reputation:

C# - version of .NET framework

I am getting the following error message:

Unable to resolve the primary reference "Xilium.CefGlue" because it was created with the Framework ".NETFramework, Version = v4.5". This version is higher than the current target Framework ".NETFramework, Version = v4.0, Profile = Client"

Upvotes: 0

Views: 140

Answers (1)

Dawnkeeper
Dawnkeeper

Reputation: 2877

Your project is set to build for dotNet 4.0. Go into the project settings(Properties> Application> Target Framework) and change it to 4.5.

Upvotes: 1

Related Questions