Julien Villers

Results 7 issues of Julien Villers

Header headings are now right-aligned. Contact section methods are now for instance "Contact url: http://..." instead of "Contact: url: http://..."

For all my endpoints, I have a weird superfluous block "Other schema item: [object Object]" in the PDF which is not visible in Swagger-UI: ![image](https://cloud.githubusercontent.com/assets/2279111/23713098/1e8fcf5c-0425-11e7-874f-78885e9c7d10.png) vs ![image](https://cloud.githubusercontent.com/assets/2279111/23713160/4b92b640-0425-11e7-83df-5184e31f818b.png) Here is the...

Fixed a bad case of response documentation. Generated HTML/PDF contained "Other schema item: [object Object]" for all built-in types (array, string, bool, etc...) See issue #20.

My Swagger JSON file is auto-generated using [Swashbuckle](https://github.com/domaindrivendev/Swashbuckle) in a desktop application, and so is provided as an API response (http://localhost/swagger/docs/v1.0 in my case) and not as a file. I've...

Fixes #184 Catch the exception in TryAttach so it behaves more like a "Try" method. This code is only reached when the process we're looking for is not part of...

I'm using the SetUp method in a very similar way to the example in README.md: ``` [SetUp] public void SetUp() { if (Application.TryAttach(ExeFileName, out var app)) { using (app) {...