Hello
I'm using BinaryFormatter.Deserialize (System.Runtime.Serialization.Formatters.Binary namespace) to deserialize a file which was serialized with BinaryFormatter.Serialize.
We're using [assembly: AssemblyVersion("2.3.*")] in AssemblyInfo.cs, so a new Build Number and Revision is generated on every build.
This lead to that the deserializer throw an exception when Deserialize files which was Serialized with older assemblies.
Is it possible to tell the deserializer to look on just the Major and Minor version in AssemblyVersion, and NOT throw exception if just Build Number and Revision has changed?
JI