ModernUO/Projects
Kamron Batman 3c6356e8fa
feat(codegen): Adds support for partial opt-in with already existing properties (#617)
- [X] Fixes an issue with ordering of properties in serialization.
- [X] Adds opt-in with existing properties.

Example:
```cs
private int _myExistingField;

[SerializableField(1)]
public int MyExistingProperty
{
    get => _myExistingField;
    set
    {
        if (value == 0)
        {
            Parent = null;
        }
        
        if (value != _myExistingField)
        {
            ((ISerializable)this).MarkDirty();
            _myExistingField = value;
        }
    }
}
```
2021-05-26 13:20:52 -07:00
..
Benchmarks fix(core): Updates slice with range selectors (#583) 2021-04-23 20:57:24 -07:00
SerializationGenerator feat(codegen): Adds support for partial opt-in with already existing properties (#617) 2021-05-26 13:20:52 -07:00
SerializationGenerator.Tests feat: Source generated Serialization/Deserialization (#550) 2021-05-23 21:06:23 -07:00
Server feat(codegen): Adds support for partial opt-in with already existing properties (#617) 2021-05-26 13:20:52 -07:00
Server.Tests feat: Source generated Serialization/Deserialization (#550) 2021-05-23 21:06:23 -07:00
UOContent feat: Source generated Serialization/Deserialization (#550) 2021-05-23 21:06:23 -07:00
UOContent.Tests fix(core): Adds Fedora 32/33 & RHEL 7/8 support. (#601) 2021-05-14 00:32:22 -07:00