Trying to run FirebaseAuth ListUsersAsync method an error is thrown
System.IO.FileNotFoundException: Could not load file or assembly 'System.Interactive.Async, Version=3.2.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263'. The system cannot find the file specified.
code snippet
var e = _firebaseAuth.ListUsersAsync(null).GetAsyncEnumerator(); try { while (await e.MoveNextAsync()) { ... } } finally { if (e != null) { await e.DisposeAsync(); } }
Project has a dependency of a package Google.Cloud.PubSub.V1 ≥ 2.0.0, which is probably using latest Gax
Anyone knows how to fix this?
Trying to run FirebaseAuth ListUsersAsync method an error is thrown
System.IO.FileNotFoundException: Could not load file or assembly 'System.Interactive.Async, Version=3.2.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263'. The system cannot find the file specified.
code snippet
var e = _firebaseAuth.ListUsersAsync(null).GetAsyncEnumerator(); try { while (await e.MoveNextAsync()) { ... } } finally { if (e != null) { await e.DisposeAsync(); } }Project has a dependency of a package Google.Cloud.PubSub.V1 ≥ 2.0.0, which is probably using latest Gax
Anyone knows how to fix this?