Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I again have a problem with protobuf.net

I backuped a project and then reinstalled my OS (Win 7, if it matters). I reinstalled VS 2010, and I reinstalled the support of protobuf.net to VS 2010.

Before that, the serializing and de-serializing were both perfectly OKAY, but now the wont work, and every time i step into them with the debugger: Picture of the situation

like image 890
Gilad Naaman Avatar asked Mar 05 '26 14:03

Gilad Naaman


1 Answers

(edit)

From the comments, it sounds like the question relates to the production versions from the home page, here. In which case, it simply sounds like the _fixed is the directory I did the build from.

You could try including the pdb (from the zip) alongside the dll; that is the debugging symbols, and will probably help the trace tool you are using. But more important is: what does the exception say?


Some psychic debugging... is it simply that it sits there doing nothing? That is the expected behaviour if the input stream is not yielding data, and hasn't formally closed itself - for example reading from an open socket that isn't sending data. Where are you reading from in this scenario?

like image 144
Marc Gravell Avatar answered Mar 07 '26 04:03

Marc Gravell