I recently updated a .net standardard 2.0 class library.
In doing so I moved from 1.0.3.0 to 1.0.5.0
I have 2 projects referencing this. Framework 4.7 web app and .Net core 3.1 HTTP Function
I can see the references and the DLLs are all the correct versions in the relevant folders, but when I run either of the solutions I get an error that it can't find the DLL but refers to 1.0.3.0.
I have tried:
deleting obj folder
clearing out .net temp files
debug / release folders
cleaning and rebuilding.
Even creating a new project recompiling and pointing to the new project instead.
It references the project rather than the DLL so there is no specific version of pubkey specified.
I've trawled files looking for a reference to 1.0.3.0 and cannot find one.
It makes me think there is an issue with the library itself but as it outputs 1.0.5.0 in to the debug/build folders I'm struggling to see why.
I've lost hours to this on forums going through the above to no avail. Any pointers would be much appreciated.


