Fix for .NET10 - channelType does not inherit from Channel - #98
Merged
Conversation
|
|
Hello, We are hitting this since the upgrade to .NET 10 and it is causing serious issues on our production. |
Contributor
Author
|
You could just get the repo and build with this fix in it. Works for us.
…On Tue, 18 Aug 2026, 12:00 br-43, ***@***.***> wrote:
*br-43* left a comment (tylerjensen/ServiceWire#98)
<#98 (comment)>
Hello,
We are hitting this since the upgrade to .NET 10 and it is causing serious
issues on our production.
Will this fixe be deployed any time soon ? if not, is there a workaround ?
—
Reply to this email directly, view it on GitHub
<#98?email_source=notifications&email_token=AA5YHTT5DURS4O7DFOZG7ML5KQSNRA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKMZSGY3DCNBQGQZ2M4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KYZTPN52GK4S7MNWGSY3L#issuecomment-5326614043>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA5YHTVH26V4QEF6MRZVAZD5KQSNRAVCNFSNUABEKJSXA33TNF2G64TZHMYTMMRSGM3DONB3JFZXG5LFHM2DANBWGEZDENRRGKQXMAQ>
.
Triage notifications, keep track of coding agent tasks and review pull
requests on the go with GitHub Mobile for iOS
<https://github.com/notifications/mobile/ios/AA5YHTWEBO63MHL76ELJE6D5KQSNRA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKMZSGY3DCNBQGQZ2M4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KUZTPN52GK4S7NFXXG>
and Android
<https://github.com/notifications/mobile/android/AA5YHTQFHEW5TYN4QJQKDLL5KQSNRA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKMZSGY3DCNBQGQZ2M4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2K4ZTPN52GK4S7MFXGI4TPNFSA>.
Download it today!
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Member
|
@IvoTops -- apologies for the delay -- merged and I'll be working on a few maintenance items today before dropping a new release to NuGet. |
Member
|
@IvoTops -- v6.0.0 has been pushed to NuGet. Should be available shortly. It includes your PR and a few performance improvements I've been working on here and there. |
|
Thanks a lot @tylerje for the quick response! I will try the new version ASAP |
Member
Contributor
Author
|
Ah Nice. Fable is indeed great for performance (and other) improvements.
Will try out the update in the coming days!
Ivo
…On Wed, 19 Aug 2026, 06:09 Tyler Jensen, ***@***.***> wrote:
*tylerje* left a comment (tylerjensen/ServiceWire#98)
<#98 (comment)>
@IvoTops <https://github.com/IvoTops> and @br-43
<https://github.com/br-43> -- I spent a bit of time with Fable and make
numerous performance improvements released in v7.0.0. I look forward to
your feedback.
—
Reply to this email directly, view it on GitHub
<#98?email_source=notifications&email_token=AA5YHTSG4PJHB2EGP7OOVTL5KUR7RA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKMZTG42DAOJWG4Z2M4TFMFZW63VHNVSW45DJN5XKKZLWMVXHJLDGN5XXIZLSL5RWY2LDNM#issuecomment-5337409673>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA5YHTQ4BNKIMBDJJ4CUY3T5KUR7RAVCNFSNUABEKJSXA33TNF2G64TZHMYTMMRSGM3DONB3JFZXG5LFHM2DANBWGEZDENRRGKQXMAQ>
.
Triage notifications, keep track of coding agent tasks and review pull
requests on the go with GitHub Mobile for iOS
<https://github.com/notifications/mobile/ios/AA5YHTQWLMMRASSNUDBZAF35KUR7RA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKMZTG42DAOJWG4Z2M4TFMFZW63VHNVSW45DJN5XKKZLWMVXHJKTGN5XXIZLSL5UW64Y>
and Android
<https://github.com/notifications/mobile/android/AA5YHTS7ID7P5H6VRNGS5235KUR7RA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTKMZTG42DAOJWG4Z2M4TFMFZW63VHNVSW45DJN5XKKZLWMVXHJLTGN5XXIZLSL5QW4ZDSN5UWI>.
Download it today!
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



The Error 'channelType does not inherit from Channel' comes from an inheritance check issue that apparently changed a bit with .NET10
Replacing InheritsFrom with IsAssignableFrom fixed it for us.