我正在尝试构建 BigQuery 应用程序,但一开始就遇到了障碍。(这是一个.Net 4.6控制台应用程序)
我已经安装了 NuGet 包Google.Cloud.BigQuery.V2
(v1.3.0),并且安装了一系列依赖项,其中之一是 System.Net.Http。
执行时BigQueryClient client = BigQueryClient.Create(projectId);
,我得到一个运行时FileNotFoundException告诉我System.Net.Http 4.1.1.3 cannot be found
,内部异常显示System.Net.Http 4.0.0.0 cannot be found
。
我已经使用不同的版本多次卸载并重新安装System.Net.Http NuGet 包,但仍然得到相同的结果。我什至只使用了常规的 .Net 4.6 System.Net.Http dll 并遇到了同样的问题。
如果我通过 NuGet 包管理器将System.Net.Http版本更改为 4.0.0,我会在同一点得到不同的FileNotFoundExceptionGoogle.Api.Gax 2.7.0.0
,但这次它说 it can't find ,内部异常说它 can't find Google.Api.Gax 2.5.0.0
。任何版本的 都会发生相同的结果Google.Api.Gax
,除非我将Google.Api.Gax
包降级到 2.5.0.0,我仍然收到运行时错误,指出Google.Api.Gax 2.7.0.0
缺少,但这次没有内部异常提及Google.Api.Gax 2.5.0.0
是什么赋予了?我过去曾遇到过参考问题,但从未像这样
PIPIONE
相关分类