Age | Commit message (Collapse) | Author |
|
The migrated package didn't work consistently in VIsual Studio, so this suppresses nullable annotations in .NET Standard instead.
|
|
|
|
|
|
This adds `#nullable disable` to all existing code (except where null is impossible like enum files), so it can be migrated incrementally.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
That reduces time spent trying to rewrite them (which won't work anyway), and shows a more informative message than the default 'DLL couldn't be loaded' error.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This simplifies the logic for individual clients, centralises common logic, and prepares for upcoming features.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|