Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <runtime>
  4. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"><dependentAssembly>
  5. <assemblyIdentity name="Newtonsoft.Json"
  6. publicKeyToken="30ad4fe6b2a6aeed"
  7. culture="neutral" />
  8. <bindingRedirect oldVersion="10.0.0.0-10.9.1.20720"
  9. newVersion="5.0.8.16617"/>
  10. </dependentAssembly>
  11. </assemblyBinding>
  12. </runtime>
  13. <startup>
  14. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
  15. </startup>
  16. </configuration>
  17.  
  18. System.IO.FileLoadException: Could not load file or assembly
  19. 'Newtonsoft.Json, Version=5.0.8.16617, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies.
  20. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
  21. File name: 'Newtonsoft.Json, Version=5.0.8.16617, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'
  22. ---> System.IO.FileLoadException: Could not load file or assembly
  23. 'Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies.
  24. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
  25. File name: 'Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'
  26. === Pre-bind state information ===
  27. LOG: DisplayName = Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublcKeyToken=30ad4fe6b2a6aeed
  28. (Fully-specified)
  29. LOG: Appbase = file:///C:/Development/Assemblies/
  30. LOG: Initial PrivatePath = NULL
  31. Calling assembly : Nest, Version=5.0.0.0, Culture=neutral, PublicKeyToken=96c599bbe3e70f5d.
  32. ===
  33. LOG: This bind starts in default load context.
  34. LOG: Using application configuration file: C:DevelopmentAssembliesxxxxxxxx.Indexer.BuildESIndex.vshost.exe.Config
  35. LOG: Using host configuration file:
  36. LOG: Using machine configuration file from C:WindowsMicrosoft.NETFramework64v4.0.30319configmachine.config.
  37. LOG: Redirect found in application configuration file: 10.0.0.0 redirected to 5.0.8.16617.
  38. LOG: Post-policy reference: Newtonsoft.Json, Version=5.0.8.16617, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed
  39. LOG: Attempting download of new URL file:///C:/Development/Assemblies/Newtonsoft.Json.DLL.
  40. WRN: Comparing the assembly name resulted in the mismatch: Major Version
  41. ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated.
  42.  
  43. at Nest.SerializerFactory.Create(IConnectionSettingsValues settings)
  44. at Elasticsearch.Net.ConnectionConfiguration`1..ctor(IConnectionPool connectionPool, IConnection connection, Func`2 serializerFactory)
  45. at Nest.ConnectionSettingsBase`1..ctor(IConnectionPool connectionPool, IConnection connection, ISerializerFactory serializerFactory, Func`2 serializerFactoryFunc)
  46. at Nest.ConnectionSettings..ctor(IConnectionPool connectionPool, IConnection connection, ISerializerFactory serializerFactory)
  47. at Nest.ConnectionSettings..ctor(Uri uri)
  48. at xxxxxxxx.ElasticSearch.ElasticSearchAPI..ctor() in C:DevelopmentRepositoriesSearchCoreSourcexxxxxxxxElasticSearchElasticSearchAPI.cs:line 21
  49. at xxxxxxxx.BuildESIndex.ConsoleApplication1.crteCraftedSrchBySpecDictDB(ITranWrapper tranWrapper, Boolean useDB, Dictionary`2 srchRsltDict) in C:DevelopmentRepositoriesSearchIndexerSourceMcMaster.Search.Indexer.BuildESIndexConsoleApplication.cs:line 371
  50. at xxxxxxxx.BuildESIndex.ConsoleApplication1.createIndex(ITranWrapper tranWrapper) in C:DevelopmentRepositoriesSearchIndexerSourceMcMaster.Search.Indexer.BuildESIndexConsoleApplication.cs:line 128
  51. at xxxxxxxx.BuildESIndex.ConsoleApplication1.Main() in C:xxxxxxxxxxSourceMcMaster.Search.Indexer.BuildESIndexConsoleApplication.cs:line 97
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement