Boris Zaikin

Results 9 comments of Boris Zaikin

Thanks a lot @arunprasathv @rudreshgp for the question and input. I will create PR based on this issue, as soon as I finish with the current my task "Integration with...

Hi Rico, thanks a lot for the feedback. I probably have to implement Open API merging logic/templates by myself. Or is it included in nswag.core ?

Hi Rico, sure I will try to help here. So found how this was implemented in following components: * [swagger-cli](https://github.com/BigstickCarpet/swagger-cli) * [swagger-merger](https://github.com/WindomZ/swagger-merger) * [swagger-combine](https://github.com/maxdome/swagger-combine) Have one question isn't this feature...

Hey @PureKrome I've combined several swagger API specs with API gateways e.g Azure API Management, Ocelot. Also, I've have used [swagger-combine](https://github.com/maxdome/swagger-combine) (almost like swagger-combine) in the dev ops pipeline.

Thanks for the answer. Method with signature: ``` public async Task Get(Guid fileId) { if (fileId == Guid.Empty) { return new BadRequestResult(); } var fileViewModel = await this.fileService.GetFile(fileId); if (fileViewModel...

Hi Rico, Thanks a lot for the answer. But it still throws an exception "JsonReaderException: Unexpected character encountered while parsing ..." at this line: `result_ = Newtonsoft.Json.JsonConvert.DeserializeObject(responseData_);` The problem in...

Thanks a lot, looks good. But with byte array it genarates same code but in line where `ReadAsStreamAsync()` it generates code line `ReadAsStringAsync()` (which throws an exception) Anyway, I also...

Hi Rico. Thank you a lot, That is clear for me. Just two questions: - Is it possible to add FileContentResult type to this list of supported types ? -...

Thanks, 1. I have same code like in your example it generates client with ReadAsStringAsync() method. Full client version what is generates on my side: ``` /// A cancellation token...