I have an XNA 4.0 project that I would like to be compiled with the .Net 4.0 Full profile, but it is set to Client profile by default. The Target framework combobox in the Application tab is grayed out.
I have uninstalled and reinstalled .Net 3.5, .Net 4.0 and Xna 4.0. What could be the problem? Our other development machines do not have this problem.

I found a workaround:
In the
.csprojfile is an xml element calledTargetFrameworkProfilewhich is set toClient. When I remove the word Client and thus empty the xml node, the project is built as a full .Net 4.0 assembly.You can even upgrade the project to .NET 4.5 or higher by changing the
TargetFrameworkVersionelement. We use this to be able to use the Kinect One camera in XNA games.