Considering the following class:
[AutoGenerateBuilder]
public class ServiceClientOptions
{
public bool Passthrough { get; set; } = false;
}
This works with version 0.9.2, but after update to v0.10.0, I get the error:
Error (active) CS0122 'AutoGenerateBuilderAttribute' is inaccessible due to its protection level.
What am I missing? Is there a migration guide for v0.10.0?