VAF dependency to Newtonsoft.Json version 10.0.3

Hello,

I need to use a nuget package having a dependency on newtonsoft.Json version 13.0.1 minimum.

Versions later than 2.0.0 of MFiles.VAF require version 10.0.3.

The NuGet package manager in Visual Studio therefore refuses the installation.
Having little experience in .Net, I am stuck.
Anyone know how to fix this kind of problem?

Are there any incompatibilities with the new versions? Are there any plans to lift this constraint soon?

Thank you in advance and good day.

Parents
  • We have nothing to announce right now around altering the Newtonsoft.JSON version (although it was actually discussed again recently).  Oddly, we seemingly receive a similar number of requests for older versions as we do newer ones.

    The only way around this right now is to use the AssemblyResolve event to note when Newtonsoft.JSON 13.0.1 is requested and to provide the 10.0.3 version.  This will only work if the external package that requires Newtonsoft will actually work with 10.0.3, obviously.

    Regards,

    Craig.

Reply
  • We have nothing to announce right now around altering the Newtonsoft.JSON version (although it was actually discussed again recently).  Oddly, we seemingly receive a similar number of requests for older versions as we do newer ones.

    The only way around this right now is to use the AssemblyResolve event to note when Newtonsoft.JSON 13.0.1 is requested and to provide the 10.0.3 version.  This will only work if the external package that requires Newtonsoft will actually work with 10.0.3, obviously.

    Regards,

    Craig.

Children