Pedro Pardal
3a619e0103
feat(logging): Adds support for Serilog ( #573 )
...
Example:
```cs
public class SomeClass
{
private static ILogger _logger;
private static Logger => _logger ??= LogFactory.GetLogger(typeof(SomeClass));
...
}
```
2021-04-19 23:43:54 -07:00
Kamron Batman
0d7ec99cbe
fix(core): Fixes serialization registry ( #574 )
2021-04-15 19:55:57 -07:00
Kamron Batman
6c4308bce6
fix(core): Caches DateTime.NowUtc ( #548 )
...
- [X] Caches DateTime.NowUtc on the game loop (not other threads)
- [X] Replaces all locations where it makes sense
- [X] Adds Min/Max for `IComparable` (TimeSpan, DateTimes, etc)
Closes #261
2021-03-13 01:32:04 -08:00
Kamron Batman
1ed23459bb
fix(core): Adds priority support for GenericPersistence ( #545 )
2021-03-09 23:49:19 -08:00
Kamron Batman
8d54d273a4
fix(serialization): Updates serialization flow & fixes serializing accounts ( #521 )
2021-02-24 22:14:15 -08:00
Kamron Batman
cf22226382
fix(core): Adds back persistence. ( #419 )
...
- [X] Adds persistence back
Notes:
- Optimizations and parallel writing will not be supported in this PR.
2021-01-18 13:16:18 -08:00