I have portable library (mvvmcross) solution and in Core project I have Live SDK method:
Client.DownloadCompleted += delegate(object o, LiveDownloadCompletedEventArgs e)
{...}
Client.DownloadAsync(SKYDRIVE_PATH + USER_DEFINED_FILE);
There is problem with LiveDownloadCompletedEventArgs:
Error 1 The type 'System.ComponentModel.AsyncCompletedEventArgs' is defined in an assembly that is not referenced. You must add a reference to assembly 'System, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e'.
Where I find this System assembly? I tried to add this:
"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll"
but it is impossible to add system assembly.