Importing .dll issues

I am currently trying to import the google drive .net sdk, but I get a get an error.

I have had this issue in the past as well with other .dlls, I’ve done a fair bit of searching but I am still struggling to understand what this is the issue and how it can be resolved.

The google drive .net sdk can be found here: GitHub - googleapis/google-api-dotnet-client: Google APIs Client Library for .NET

Any insight would be greatly appreciated.

Anyone able to provide assistance?

Only that DotNetOpenAuth.dll is looking for System.Configuration.dll in all the relevant places but couldn’t find it. That probably means that Unity doesn’t know that your game needs the second dll so it’s not included in the build. Maybe make use of one of the System.Configuration classes in your script code, to force Unity to include the assembly, or manually copy System.Configuration.dll into your DriveSDK folder.

Thanks