- Add
DoNotUseAttribute
- Property: Disallow in members initialization
- Just report an error without generation new member
- Add a code-fix for CS0282
- Add
[StructLayout(LayoutKind.Auto)]
to (ref) struct
- Add
- Modify
PropertyAttribute.WithInit
- Change to
Setter
- Allowed values:
- null (no setter)
set
init
- Change to
- Add
// <auto-generated/>
inFaustVX.PrimaryParameter.SG.g.cs
- Don't generate empty partial types
- Better performance
- Based on @333fred and @CyrusNajmabadi https://discord.com/channels/143867839282020352/598678594750775301/1176598732691734568
- Add a code-fix for CS9113
- Add
[Field]
or[Property]
or[DoNotUse]
(or[RefField]
to ref struct) to primary parameter
- Add
- Don't generate
PC01
on primary class base argumentsclass Derived([DoNotUse] int i) : Base(i) { }
(Don't error onBase(i)
)
- Allow for
summary
documentation (#8)- Add
Summary
Property to[Field]
,[Property]
and[RefField]
.
- Add