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>
インストールしたパッケージのアイテムの1つが、特に3.9.69.0バージョンを探していて、まだ更新されていない可能性があります。アセンブリバインディングリダイレクトを使用すると、それをオーバーライドし、そのアセンブリに対するすべての要求を3.9.70バージョンにリダイレクトする必要があります。
編集
これは、Web以外のプロジェクトでも機能します。 app.configファイルを開いて(または追加して)、同じ情報を追加します。これは、<configuration></configuration>
内の最上位要素です。 要素。
空の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>