question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

.NET Core 3.1 System.Interactive.Async assembly issues

See original GitHub issue

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?

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:9 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
TheSpycommented, Nov 5, 2020

I confirm that a release https://github.com/firebase/firebase-admin-dotnet/releases/tag/v2.0.0 has this issue resolved. Thank you!

0reactions
Bartizancommented, Nov 5, 2020

as far as I can see it is resolved and could be closed. Thanks

Read more comments on GitHub >

github_iconTop Results From Across the Web

System.Interactive.Async dependency breaks .NET Core ...
Forcefully adding a dependency for System.Interactive.Async >= 4.0.0-preview* works around the issue, but I don't think it makes sense for EF ...
Read more >
c# - .NET Core 3.0 migration error IAsyncEnumerable<T ...
net core 2.2 to 3.0. I am getting the error: Error CS0433 The type 'IAsyncEnumerable< T >' exists in both 'System.Interactive.Async, Version ...
Read more >
IAsyncEnumerable Disambiguation - bitScry
NET Core 3+ as per this GitHub issue which produces the following error. The type 'IAsyncEnumerable' exists in both 'System.Interactive.
Read more >
System.Interactive.Async 6.0.1
Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.
Read more >
HttpClient Class (System.Net.Http)
Provides a class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found