This causes us a trouble in updating our product.
We used to use ServiceStack.OrmLite.nupkg 5.1.0 in the older product, assembly version of it is correct.
When we update our product by our installer, ServiceStack.OrmLite shoud be updated from 5.1.0.0 to 5.10.4.0.
But assembly version is from 5.1.0.0 to 5.0.0.0 (this should be 5.10.4.0), so installer cannnot replace it properly.
Cause
In this line, assembly version of ServiceStack.OrmLite is fixed to 5.0.0.0.
So, could you please publish ServiceStack.OrmiLite.nupkg as 5.10.4 by deleting the AssemblyVersion definition in the line?
It’s intentional for the AssemblyVersion which is used in the Assembly’s Strong Naming identity to always retain the major version i.e. 5.0.0.0, but you should be able to use the AssemblyFileVersion to detect the version of the Assembly however this didn’t seem to be properly generated in OrmLite projects which should be resolved in this commit: