Could not load file or assembly 'Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies

后端 未结 17 2363
渐次进展
渐次进展 2020-12-03 00:43

I have a WinJS project that is previously built on Windows 8.1 using VS 2013.

Recently I upgraded this project to Universal Windows 10 by creating a blank Javascrip

17条回答
  •  遥遥无期
    2020-12-03 01:21

    I've experienced similar problems with my ASP.NET Core projects. What happens is that the .config file in the bin/debug-folder is generated with this:

      
        
        
        
      
    

    If I manually change the second bindingRedirect to this it works:

    
    

    Not sure why this happens.

    I'm using Visual Studio 2015 with .Net Core SDK 1.0.0-preview2-1-003177.

提交回复
热议问题