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.

enter image description here

link|improve this question

76% accept rate
Are you able to create a fresh XNA project and reproduce the problem in that? – Andrew Russell Jun 29 '11 at 14:39
In a fresh XNA project it is perfectly reproduceable. – Wouter Jun 29 '11 at 14:47
feedback

2 Answers

Where do you see that your project is set to the client framework? I created several XNA-projects but never got problems with this.

My Target framework box is disabled too.

If you're getting bugs, I think you've to search for another cause.

Greatings

link|improve this answer
When you add a reference it mentions "Filtered to: .Net Framework 4 Client Profile" on top. Also in the .csproj file TargetFrameworkProfile is set to Client. I don't get bugs, but it is annoying I can't use certain references such as the content manipulation pipeline functionality in XNA. – Wouter Jul 12 '11 at 7:53
feedback
up vote 0 down vote accepted

I found a workaround:

In the .csproj file is an xml node called TargetFrameworkProfile which is set to Client. When I remove the word Client and thus empty the xml node, the project is built as a full .Net 4.0 assembly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.