Gilad Naaman
Gilad Naaman

Reputation: 6550

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

Upvotes: 3

Views: 220

Answers (1)

Marc Gravell
Marc Gravell

Reputation: 1064244

(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?

Upvotes: 1

Related Questions