This tool helps you transform a non-nested JSON file into a static c# class with the same static fields as the source file. Usage:
Sample: From "test.json" with contents: { "a": "b", "c": "d" } into "test.cs" public static class test { public static string a => "b"; public static string c => "d"; } Note: namespace will be generated based on the file's location regarding to the solution, classname will be the same as the file's name |