So I have a big c# solution containing 120 projects. The solution doesn’t contain a user interface and is compiled to support both compact framework and the full framework. The solution is in Visual Studio 2005 format.
I would like to remove the support for Windows CE and convert it all to target the full framework and open it in Visual Studio 2010.
What I want to do is remove the support for compact framework from the whole solution.
How should I proceed? Is it possible to just convert the projects to the full framework?
Thank you.
So in the end I had to edit manually every csproj file in the solution. I removed the information’s related to targeting the compact framework et replaced it with the needed info to target the full framework.
It wasn't very fun but now it works.
Thanks