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 encountered an issue with the NEventStore reference in NEventStore.Persistence.SQL. When trying to run my .net core web app I receive the following exception.
Application startup exception: System.IO.FileNotFoundException: Could not load file or assembly 'NEventStore, Version=7.1.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'NEventStore, Version=7.1.0.0, Culture=neutral, PublicKeyToken=null'
Inspecting the assembly using ILSpy I see that NEventStore.Persistence.SQL references
// NEventStore, Version=7.1.0.0, Culture=neutral, PublicKeyToken=null
As the assembly is not strong named I cannot add an assembly binding redirect to get around the issue as that requires a non null PublicKeyToken.
It is also worth noting that NEventStore.Persistence.SQL has an assembly version of 0.0.0.0
The text was updated successfully, but these errors were encountered:
I have encountered an issue with the NEventStore reference in NEventStore.Persistence.SQL. When trying to run my .net core web app I receive the following exception.
Application startup exception: System.IO.FileNotFoundException: Could not load file or assembly 'NEventStore, Version=7.1.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'NEventStore, Version=7.1.0.0, Culture=neutral, PublicKeyToken=null'
Inspecting the assembly using ILSpy I see that NEventStore.Persistence.SQL references
// NEventStore, Version=7.1.0.0, Culture=neutral, PublicKeyToken=null
As the assembly is not strong named I cannot add an assembly binding redirect to get around the issue as that requires a non null PublicKeyToken.
It is also worth noting that NEventStore.Persistence.SQL has an assembly version of 0.0.0.0
The text was updated successfully, but these errors were encountered: