Just ran into exactly the very same issue on my app.
Added Microsoft.Data.Services.Client (different file name, contains the same namespace as the old one),
Microsoft.Data.Services, Microsoft.Data.OData.
Then, requested for System.Configuration as in:
Cannot resolve Assembly or Windows Metadata file 'System.Configuration.dll'
Xaml Internal Error error WMC9999: Type universe cannot resolve assembly: System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.
So, I added then System.Configuration from
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5, v4.0
and v3.5. In all cases I get:
C:\Program Files (x86)\MSBuild\Microsoft\WindowsXaml\v11.0\Microsoft.Windows.UI.Xaml.Common.targets(255,9): Xaml Internal Error error WMC9999:
Cannot find type System.ServiceModel.Web.WebServiceHost in module System.ServiceModel.Web.dll.
The only dll that contains the requested type (System.ServiceModel.Web.WebServiceHost) is
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.5\System.ServiceModel.Web.dll, but I cannot add a reference to it. VS11 says that it is automatically referenced by the build system. But, I bet that it is referencing
the version 4 or 5 of the same, none of which contains the required class.
Ran into a wall :(