Say, I have created and extended a Windows Phone Class Library (WPCL) project or any other Class Library project that targets a specific platform.
Say, I am now considering targeting another .NET platform, e.g., Windows Store, but at the time of creating my Class Library I chose to create a platform specific Class Library (such as my WPCL) and not a Portable Class Library (PCL).
The source code written is portable, it just requires a PCL project file (csproj).
From WPCL and PCL csproj comparison it seems that only a couple of properties differ. But do I need to hack the csproj to get the work done?
Basically, I want to know whether,
is there a way, to automatically convert a platform-specific Class Library into a Portable Class Library without hacking csproj files?