Pawel Kadluczka
Pawel Kadluczka
- dynamic base - Control Flow Guard (https://github.com/aspnet/libuv-build/pull/28)
- [ ] There are a few flakey tests on Linux (e.g. https://github.com/aspnet/SignalR-Client-Cpp/pull/132#issuecomment-164597583). - [ ] Oftentimes the process does not exit even though all tests appear to have finished...
`connection_impl_start.start_fails_if_transport_fails_when_receiving_messages` is consistently failing on Linux. It looks like the exception is being sliced somewhere. The tests asserts that starting the transport should write the following error message: `connection could...
- [x] make sure we can build Debug and Release versions and they work - [x] enable building dll - [x] create NuGet package - [x] ~~consider linking casablanca statically...
Unnamed namespaces receive different random names each time they are compiled which may result in issues when comparing dumps.
- [x] support ConnectTimeout - [x] set headers similarly to what we do in the .NET Client - [ ] review and rationalize logging - [x] review TODOs in the...
At the moment `log_writer` has just a `write` method that gets a formatted message to be logged. We should also have a method that takes time, message severity and message...
Currently, if I want to make my application standalone I have to edit the *.csproj manually. I thought it was possible to set/edit the RID in the project properties but...
Binary payloads are by default translated to JSON array and rejected by the server. Example: ```Swift for i in 1...5 { // continuation.yield([UInt8(i)] // fails continuation.yield(Data([UInt8(i)]).base64EncodedString()) // workaround Thread.sleep(forTimeInterval: 0.1)...