Keith Lawrence
Keith Lawrence
I see this error coming back from the [github api](https://api.github.com/) call when trying to add repo ```JSON { "message": "Must specify access token via Authorization header. https://developer.github.com/changes/2020-02-10-deprecating-auth-through-query-param", "documentation_url": "https://docs.github.com/v3/#oauth2-token-sent-in-a-header" }...
I have also just been looking at a similar issue but more in regard to namespaces in xml. ``` c# public static string xml1a = @""; public static string xml1b...
Ok I ended up with this extension method to do the Normalization of the xdocument ``` C# public static XDocument Normalize(this XDocument document) { var nsDict = new Dictionary(); document.Root!.DescendantsAndSelf().Attributes()....
The primary output would be something like this for the example in the readme. ```HTML Class Type: List<ObjectDumperSample.Netfx.Person> Name Age John 20 Thomas 30 ```` Styling would be primarily left...
Yea simple at least at first. Adding classes so most styling can be done on the users end. Not trying to go crazy with options and flexibility.
Yea still on, Just vacation is over, back to work. It is working in the simple case of object with properties and looking at how to deal with the more...