there is a conflict arises when I include both FirebaseAdmin 1.17.1 and Google.Cloud.Firestore 2.2.0 packages.
FirebaseAdmin 1.17.1 package has a dependency on Google.Api.Gax 2.7.0.
Google.Cloud.Firestore 2.2.0 package has a dependency on Google.Api.Gax 3.2.0.
When installing both packages side by side in one .Net project, the FirebaseAdmin 1.17.1 automatically grabs the higher version Google.Api.Gax 3.2.0 which causes compile errors. specifically because the use of Microsoft.Bcl.AsyncInterfaces in Google.Api.Gax 3.2.0 while using System.Interactive.Async in Google.Api.Gax 2.7.0
I guess this issue belongs here because FirebaseAdmin is not restricting Google.Api.Gax dependency to version 2.7.0
When installing FirebaseAdmin 1.17.1 solely.

When installing both packages

there is a conflict arises when I include both
FirebaseAdmin 1.17.1andGoogle.Cloud.Firestore 2.2.0packages.FirebaseAdmin 1.17.1package has a dependency onGoogle.Api.Gax 2.7.0.Google.Cloud.Firestore 2.2.0package has a dependency onGoogle.Api.Gax 3.2.0.When installing both packages side by side in one .Net project, the
FirebaseAdmin 1.17.1automatically grabs the higher versionGoogle.Api.Gax 3.2.0which causes compile errors. specifically because the use ofMicrosoft.Bcl.AsyncInterfacesinGoogle.Api.Gax 3.2.0while usingSystem.Interactive.AsyncinGoogle.Api.Gax 2.7.0I guess this issue belongs here because
FirebaseAdminis not restrictingGoogle.Api.Gaxdependency to version2.7.0