You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried to port NHibernate to the .Net8 and fount the blocker in the SerializationHelper.cs class. It relies on the BinaryFormatter which is deprecated in .Net8
The text was updated successfully, but these errors were encountered:
TLDR: review how your application works and eliminate any use of the binary serializer it does. NHibernate does not use it by itself, but only through the application choices, like mappings using SerializableType, uses of second level cache providers relying on binary serialization, ....
I have tried to port NHibernate to the .Net8 and fount the blocker in the SerializationHelper.cs class. It relies on the BinaryFormatter which is deprecated in .Net8
The text was updated successfully, but these errors were encountered: