JochenMader
JochenMader
Hi there I checked this one out. In TransitiveMembersGenerator.cs:67 is a type check with inline declaration: ```c# node is ClassDeclarationSyntax ``` A record is not recognized as ClassDeclarationSyntax, so the...
Hi there I did some research on this one and found following: In ../src/CommunityToolkit.Mvvm.SourceGenerators/ComponentModel/Models/AttributeInfo.cs:41 ```c# // Get the constructor arguments foreach (TypedConstant typedConstant in attributeData.ConstructorArguments) { constructorArguments.Add(TypedConstantInfo.Create(typedConstant)); } ``` For...
Hi there In my opinion this is not a bug. According to [RelayCommand attribute - Asynchronous commands](https://learn.microsoft.com/en-us/dotnet/communitytoolkit/mvvm/generators/relaycommand#asynchronous-commands) the command method should return a Task type for this. ```c# [RelayCommand] private...
Hi @echoix It took me a while to understand the problem but finaly I go it. When the `ObservableRecipientAttribute` is used, the Broadcast method is generated in the partial class...
Hi there I cannot reproduce this bug. Works like a charm here. I suggest to close this issue. best regards