Currently the .csproj files are targeting the full version of .NET framework 4.0. This causes the libraries to be unusable in projects targeting the client profile, and by extension, systems which only have the client profile installed.
Consider doing the following:
Currently the .csproj files are targeting the full version of .NET framework 4.0. This causes the libraries to be unusable in projects targeting the client profile, and by extension, systems which only have the client profile installed.
Consider doing the following:
<TargetFrameworkProfile />tags inside .csproj files with<TargetFrameworkProfile>Client</TargetFrameworkProfile>.