Building microservices with Tye

Build with an Azure free account. Get USD200 credit for 30 days and 12 months of free services.
Start free todayThe source generators feature was adding in .NET 5. They allow you to do interesting things like generate additional source files that will get added to a compilation.
In this video, Kathleen chats with Jared Parsons to find out what source generators are capable of.
Useful Links
Could the [AutoNotify] attribute be modified to add serialization attributes to properties during generation?
Also, can you stack attributes? For example, can I do this?
public class Test
{
[AutoNotify]
[AutoEquality]
private int _id;
}
generates
[DataContract]
public class Test : INotifyPropertyChanged
{
....INotifyPropertyChanged stuff......
[DataMember]
public int Id
{
get { return _id; }
set { ...INotifyPropertyChanged stuff }
}
.... Equality stuff....
}