-
-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IAsyncEnumerable<T> is not included in net48 build #197
Comments
This is intentional not including it when targeting net461+ since otherwise it would conflict with |
Want to open a PR? |
It could be done from web editor, but I'm puzzled with current branching policy. |
The branches got messy for the attempt to add a version 4 which was allowing unsafe. The idea being that whatever restructuring/splitting can happen in develop_v4, and would be v4 once released... Assuming anything of that were to be done. The bulk of the work remains in develop_v3, and v3 is the last released. However there are changes in master which would have to be merged on develop_v3, if they don't break anything. And then possibly if to develop_4, if that will be worked on. That leaves what to do with master afterwards... It could be kept in sync with either develop_v3 or develop_v4, which ever is to be worked primarily, which would also ease pull request going forward. |
@theraot Can you open discussions page in GitHub ? |
The IAsyncEnumerable interface is not shipped as a part of net48 (see the "Applies to" section).
Theraot.Core does include its own copy but it is excluded for the
net48
target, IAsyncEnumerable.cs:I'm not sure if it was done intentionally, so just a report here:)
The text was updated successfully, but these errors were encountered: