This article describes selecting it for .NET 3.5 under VS2008.
How does one select the .NET 4.0 Client profile for C++/CLI under VS2010?
This article describes selecting it for .NET 3.5 under VS2008. How does one select
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
After experimenting with a C# project, I found that manually adding a TargetFrameworkProfile node to the vcxproj file seems to do the trick.
Procedure:
1) Using a plaintext editor, open the vcxproj
2) Find the PropertyGroup node
3) Find the TargetFrameworkVersion node under PropertyGroup
4) Add a TargetFrameworkProfile node as shown in this snippet:
After saving the vcxproj file and reloading the project inside Visual Studio, open the project’s Properties and select Common Properties. The Targeted framwework will now display “Profile=Client”
