gitextract_t4ju8rln/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── question.md │ ├── PULL_REQUEST_TEMPLATE/ │ │ └── PULL_REQUEST_TEMPLATE.md │ └── auto_assign.yml ├── .gitignore ├── KeeOneDriveSync.plgx ├── KoenZomers.KeePass.OneDriveSync/ │ ├── Configuration.cs │ ├── Enums/ │ │ ├── CloudStorageType.cs │ │ └── OneDriveRefreshTokenStorage.cs │ ├── Forms/ │ │ ├── AboutForm.Designer.cs │ │ ├── AboutForm.cs │ │ ├── AboutForm.resx │ │ ├── OneDriveAboutForm.Designer.cs │ │ ├── OneDriveAboutForm.cs │ │ ├── OneDriveAboutForm.resx │ │ ├── OneDriveAskToStartSyncingDialog.Designer.cs │ │ ├── OneDriveAskToStartSyncingDialog.cs │ │ ├── OneDriveAskToStartSyncingDialog.resx │ │ ├── OneDriveAuthenticateForm.Designer.cs │ │ ├── OneDriveAuthenticateForm.cs │ │ ├── OneDriveAuthenticateForm.resx │ │ ├── OneDriveCloudTypeForm.Designer.cs │ │ ├── OneDriveCloudTypeForm.cs │ │ ├── OneDriveCloudTypeForm.resx │ │ ├── OneDriveConfigDetailsForm.Designer.cs │ │ ├── OneDriveConfigDetailsForm.cs │ │ ├── OneDriveConfigDetailsForm.resx │ │ ├── OneDriveConfigForm.Designer.cs │ │ ├── OneDriveConfigForm.cs │ │ ├── OneDriveConfigForm.resx │ │ ├── OneDriveFilePickerDialog.Designer.cs │ │ ├── OneDriveFilePickerDialog.cs │ │ ├── OneDriveFilePickerDialog.resx │ │ ├── OneDriveGraphDeviceLoginForm.Designer.cs │ │ ├── OneDriveGraphDeviceLoginForm.cs │ │ ├── OneDriveGraphDeviceLoginForm.resx │ │ ├── OneDriveGraphDeviceLoginForm1.Designer.cs │ │ ├── OneDriveRefreshTokenStorageDialog.Designer.cs │ │ ├── OneDriveRefreshTokenStorageDialog.cs │ │ ├── OneDriveRefreshTokenStorageDialog.resx │ │ ├── OneDriveRemoteLocationDialog.resx │ │ ├── OneDriveRequestInputDialog.Designer.cs │ │ ├── OneDriveRequestInputDialog.cs │ │ ├── OneDriveRequestInputDialog.resx │ │ ├── SharePointCredentialsForm.Designer.cs │ │ ├── SharePointCredentialsForm.cs │ │ ├── SharePointCredentialsForm.resx │ │ ├── SharePointDocumentLibraryPickerDialog.Designer.cs │ │ ├── SharePointDocumentLibraryPickerDialog.cs │ │ └── SharePointDocumentLibraryPickerDialog.resx │ ├── KeePass.exe.config │ ├── KeePassDatabase.cs │ ├── KoenZomers.KeePass.OneDriveSync.csproj │ ├── KoenZomersKeePassOneDriveSyncExt.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Providers/ │ │ ├── MicrosoftGraph/ │ │ │ ├── MicrosoftGraphDeviceCodeAuthCheckFailedResponse.cs │ │ │ ├── MicrosoftGraphDeviceCodeAuthCheckSucceededResponse.cs │ │ │ └── MicrosoftGraphDeviceCodeResponse.cs │ │ ├── OneDriveProvider.cs │ │ └── SharePointProvider.cs │ ├── Resources/ │ │ ├── MSGraph.pdn │ │ └── SharePoint.pdn │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── TokenHelper.cs │ ├── Utilities.cs │ ├── app.config │ └── packages.config ├── KoenZomers.KeePass.OneDriveSync.sln ├── LICENSE.md ├── NuGet.config ├── README.md ├── create-plgx.cmd └── version.txt