Releases: nenoNaninu/TypedSignalR.Client
Releases · nenoNaninu/TypedSignalR.Client
TypedSignalR.Client 3.2.1
Enhancements:
- Support client results.
TypedSignalR.Client 3.1.1
TypedSignalR.Client 3.0.7
Enhancements:
- #45 : Suppress CS1591 in generated code.
TypedSignalR.Client 3.0.6
Enhancements:
- #37 : Newline normalization in generated source code.
TypedSignalR.Client 3.0.4
Enhancements:
- #33 : Support code generation in the writing style that invokes static methods directly.
TypedSignalR.Client 3.0.3
Enhancements:
- Optimization of code analysis.
- Quality of the generated source code.
TypedSignalR.Client 3.0.2
Enhancements:
- Improve validation rules.
TypedSignalR.Client 3.0.1
Changes:
- Using Incremental Source Generator🎉
- Please use Visual Studio 2022 (v17.1) or later.
- Enabling nullable context in generated code.
- Avoiding name collisions caused by global using.
Enhancements:
- Reduction of allocation during code analysis.
TypedSignalR.Client 2.0.1
- Change: The suggestion of location where the error is occurring.
- Previous: Definition location
- Current: The location where methods such as CreateHubProxy are invoked.
- Reason: Because the location cannot be presented if the interface is defined in another project or assembly.
- Fix
- The problem that the proper error messages could not be issued due to methods generated from property definitions (IL level).
TypedSignalR.Client 2.0.0
Add extension method based API (v2).
THub CreateHubProxy<THub>(this HubConnection connection)
IDisposable Register<TReceiver>(this HubConnection connection, TReceiver receiver)
(THub HubProxy, IDisposable Subscription) CreateHubProxyWith<THub, TReceiver>(this HubConnection connection, TReceiver receiver)
Remove attribute based API (v1).
HubClientBaseAttribute