FastMigrations.Json.Net
FastMigrations.Json.Net copied to clipboard
The extra fast, minimum code size, unity compatible plugin for json files migrations using Newtonsoft Json.Net.
Create `Prewarm` method to avoid performance dropping by using `MigratorMissingMethodHandling.Ignore` setting Idea: - Use `System.Type.GetMethods`, filter them and `CreateDelegate` for all `Migrate_` methods by the first call
https://github.com/Weingartner/Migrations.Json.Net/tree/master/Weingartner.Json.Migration.Roslyn
It would be fantastic if the library supported usage of the JsonConverterAttribute as well, as for public APIs the SerializerSettings may not be under my control. I could contribute as...