Intro:
We had an issue in production where our app was unable to load the stateless file with the error Could not load file or assembly 'Stateless, Version=4.0.0.0, Culture=neutral, PublicKeyToken=93038f0927583c9a'. The system cannot find the file specified. even if the file is there.
We are using the last version of stateless 5.20.1
Investigations does not give us a clear idea of where the problem is as sometimes it is working good (but that is not the reason of this issue).
Is there a good reason to have the AssemblyVersion still fixed to v4.0.0.0 for all the v5 versions of stateless?
See
|
[assembly: AssemblyVersion("4.0.0.0")] |
I would even like to know, is there a good reason to not put in the AssemblyVersion the real version of stateless as it is the only information displayed in the exception when the problem occurs? It will make the investigation easier...
Intro:
We had an issue in production where our app was unable to load the stateless file with the error
Could not load file or assembly 'Stateless, Version=4.0.0.0, Culture=neutral, PublicKeyToken=93038f0927583c9a'. The system cannot find the file specified.even if the file is there.We are using the last version of stateless 5.20.1
Investigations does not give us a clear idea of where the problem is as sometimes it is working good (but that is not the reason of this issue).
Is there a good reason to have the
AssemblyVersionstill fixed to v4.0.0.0 for all the v5 versions of stateless?See
stateless/src/Stateless/Properties/AssemblyInfo.cs
Line 6 in 588f1a1
I would even like to know, is there a good reason to not put in the
AssemblyVersionthe real version of stateless as it is the only information displayed in the exception when the problem occurs? It will make the investigation easier...