-
Notifications
You must be signed in to change notification settings - Fork 143
'Microsoft.Graph.BasePostMethodRequestBuilder`1' Not Found #197
Comments
Something is fishy here. |
Hello, I reinstalled the Nuget package and looks like this issue was solved. However now i have a Microsoft.Graph.ServiceException. Below the full exception error in case it could be of any help: `Error: at Microsoft.Graph.HttpProvider.d__19.MoveNext() Exception of type 'Microsoft.Graph.ServiceException' was thrown.` |
Thank you for reaching out and for your patience. This SDK is being officially deprecated. See #259 for more information |
Hello,
I'm trying to copy 1 file from OneDrive to another folder in OneDrive using the suggested method from the documentation for c#:
var asyncStatus = await FileManager.FileManager.SharedInstance.OneDriveDevice .Drive .Items[file.Id] .Copy(strDestinationName, new ItemReference { Id = destinationFolderID }) .Request() .PostAsync();
However this provoques the following exception:
"Was not possible to load the type 'Microsoft.Graph.BasePostMethodRequestBuilder`1' from the assembly 'Microsoft.Graph.Core, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.
I'm using Microsoft.OneDriveSDK v 2.0.6 and Microsoft.Graph.Core v=1.3.0.
I can copy files from OneDrive to Local and from Local to OneDrive, but i guess this type is not used for that.
Is it possible that i'm missing some library?
Thanks!
The text was updated successfully, but these errors were encountered: