क्या आपने अपने 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>
यह हो सकता है कि आपके द्वारा स्थापित पैकेज में से एक आइटम विशेष रूप से 3.9.69.0 संस्करण की तलाश में है और अभी तक अपडेट नहीं किया गया है। असेंबली बाइंडिंग रीडायरेक्ट का उपयोग करके इसे ओवरराइड करना चाहिए और उस असेंबली के सभी अनुरोधों को 3.9.70 संस्करण पर रीडायरेक्ट करना चाहिए।
संपादित करें
यह गैर वेब परियोजनाओं के लिए भी काम करता है। एक 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>