2
I’m having a problem with my Dlls A few screens is "System.ValueTuple.dll"
My Packages.config is with the version 4.5.0.
But when the project is compiled, it generates the dll with the version 4.6.26515.6
And in my.config app, you have the following::
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
And in some machines (not all) the following error occurs:
"Unable to load file or assemply 'System.Valuetuple, Version=4.0.33.0, Culture=neutral, and PulicKeyToken=cc7bf13ffcd2ddd51'"
There are 4 places yesterday has this dll version and all are different. And I’ve tried to make it all the same.
If your project uses
AssemblyInfo.cs
look for the lineAssemblyVersion
and see if it has asterisks(*). Asterisks mean automatic value increment.– Augusto Vasques
No (*) in Assemblyversion
– Gustavo Sabel