Wednesday, 29 October 2014
Tuesday, 21 October 2014
Digital IT Live Sessions
Digital IT Live SessionsMicrosoft User Group HyderabadMonday, October 20, 2014 at 5:00 PM - Thursday, October 30, 2014 at 6:00 PM (IST) |
|
Event Details
Agenda:
NOTE: Links to attend the sessions will be updated in this page on the day of the session.
Join Cloud @ Microsoft Session : https://join.microsoft.com/meet/v-velaks/0843B7G7
| Date | Topic | Time Slot | Speaker | |
| 20-Oct | Mobile App Development | 5 - 6 PM | Preethi S Vemu | Click here to Join |
| 21-Oct | Cloud @ Microsoft | 5 - 6 PM | Aditya Surinder Bonsor | Click here to Join |
| 27-Oct | Analytics | 5 - 6 PM | Bhanu Prakash Nunna | |
| 28-Oct | Mobile App Development | 5 - 6 PM | Neeraj Tripathi | |
| 29-Oct | Cloud @ Microsoft - II | 5 - 6 PM | Shelendra Kumar Sharma | |
| 30-Oct | Analytics | 5 - 6 PM | Harpreet Singh Rooprai |
NOTE: Links to attend the sessions will be updated in this page on the day of the session.
Join Cloud @ Microsoft Session : https://join.microsoft.com/meet/v-velaks/0843B7G7
Monday, 13 October 2014
Could not load file or assembly 'Newtonsoft.Json' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference
This kind of Error will mainly come for Newtonsoft.json.dll
version Conflict.
Could not load file or assembly 'Newtonsoft.Json' or one of
its dependencies. The located assembly's manifest definition does not match the
assembly reference
You can see the Exception trace it is showing the
configuration file settings.
We can check the version of dll in the runtime of web.config
file and dll version in the Solution references.
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" culture="neutral"publicKeyToken="30ad4fe6b2a6aeed" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
Either we have to change the version in configuration
section or we have to update of dll based on the dependencies of version.
Update-Package
Newtonsoft.Json
Update the Nu Get package from Package update Console.
Go to Tools in Visual studio and select Nu Get Package
Manager and the select Package Manager Console.
This will resolve the Problem.
Subscribe to:
Comments (Atom)