Czy próbowałeś dodać przekierowanie asemblera w pliku web.config?
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ServiceStack.Common" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.9.70.0" newVersion="3.9.70.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
Możliwe, że jeden z elementów zainstalowanego pakietu wyszukuje konkretnie wersję 3.9.69.0 i nie został jeszcze zaktualizowany. Użycie przekierowania powiązania zestawu powinno to zastąpić i przekierować wszystkie żądania dotyczące tego zestawu do wersji 3.9.70.
Edytuj
Działa to również w przypadku projektów innych niż internetowe. Otwórz (lub dodaj) plik app.config i dodaj te same informacje. Jest to element najwyższego poziomu wewnątrz <configuration></configuration>
element.
Jeśli pusty plik app.config:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ServiceStack.Common" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.9.70.0" newVersion="3.9.70.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>