The generator is able to build sync sibling for an async method. That's great tool for us, we have 130 usages of [Zomp.SyncMethodGenerator.CreateSyncVersion] in our project.
I ask for a feature, when the generator will be able to build a sync method declaration inside in interfaces:
//we have
public partial interface IA
{
[Zomp.SyncMethodGenerator.CreateSyncVersion]
Task<int> SomeMethodAsync();
}
//generator build:
public partial interface IA
{
int SomeMethod();
}
The generator is able to build sync sibling for an async method. That's great tool for us, we have 130 usages of
[Zomp.SyncMethodGenerator.CreateSyncVersion]
in our project.I ask for a feature, when the generator will be able to build a sync method declaration inside in interfaces: