I have a server app built witn Cpp Rest SDK which runs fine in a windowsserver code Docker container (10GB!). Now I'm trying to make it work in a nano server container to save space (1GB "only"). The app runs but then in throws an exception during initialization. More specifically it throws an "Unknown exception" on a pplx::task::wait().
http_listener m_listener;
auto task = m_listener->open();
task.wait(); // <= throws Unknown exception
Again, the above code works if run in a windowsservercore container. Any clues? Also can't find a way to debug the code remotely in Visual Studio 2015.