C# AWS Lambda无法加载BigQuery库

C# AWS Lambda无法加载BigQuery库,c#,amazon-web-services,google-cloud-platform,aws-lambda,google-bigquery,C#,Amazon Web Services,Google Cloud Platform,Aws Lambda,Google Bigquery,我正试图使用在dotnet core 3.1上用C#编写的Lambda将数据加载到BigQuery中。我正在使用Google.Cloud.BigQuery.V2库(V2.2.0)。本地调试工作与预期一样,但是,在AWS上运行时,我收到此错误: "errorMessage": "Could not load file or assembly 'Google.Cloud.BigQuery.V2, Version=2.2.0.0, Culture=neutral, Pu

我正试图使用在dotnet core 3.1上用C#编写的Lambda将数据加载到BigQuery中。我正在使用Google.Cloud.BigQuery.V2库(V2.2.0)。本地调试工作与预期一样,但是,在AWS上运行时,我收到此错误:

 "errorMessage": "Could not load file or assembly 'Google.Cloud.BigQuery.V2, Version=2.2.0.0, Culture=neutral, PublicKeyToken=185c282632e132a0'. An internal error occurred.\n (0x8007054F)"
我已经导出了函数代码,.dll文件就在那里。我尝试将BigQuery.V2库降级到2.1,同样的问题也出现了。我还尝试在容器中运行.NET5上的代码,但同样的问题也发生了。 有人有什么想法吗?谢谢