Using External Library on plugins

Hello.

I want to make plugins that can write log on OneDrive or GoogleDrive after arming and disarming.

but, it should use external library for this.

because I couldn’t build mission planner because of dotnet version problem,

I just program plugin file just with one .cs file.

is there way of using external library on plugins?

"
using Microsoft.Graph;
using Microsoft.Identity.Client;
"

Because It is easy to deploy plugins if I didn’t build it,
I included dll files as external libraries in the same folder.

Is it impossible to include Microsoft Graph library without building…?

yes it is impossible. If you want to use NuGet libs or use more than one source file, resources etc. You have to use compiled dll

1 Like