Package update (#6916)

4 packages updated -> Jackett is now using the latest version of all packages except for AutoMapper -> Will have a go at that another day -> There is a few changes needed

-Minor code changes made to support newer version of YamlDotNet and BencodeNET
-Logic update for AssemblyName as I've been experiencing restore 'weirdness'  https://stackoverflow.com/questions/208084/how-to-use-a-different-assembly-name-for-different-configurations
This commit is contained in:
junglebus
2020-01-12 05:04:24 +11:00
committed by garfield69
parent 17db2b5df3
commit dc87b36ae0
4 changed files with 19 additions and 10 deletions

View File

@@ -93,7 +93,7 @@ namespace Jackett.Common.Services
logger.Info("Loading Cardigann definitions from: " + string.Join(", ", path));
var deserializer = new DeserializerBuilder()
.WithNamingConvention(new CamelCaseNamingConvention())
.WithNamingConvention(CamelCaseNamingConvention.Instance)
.IgnoreUnmatchedProperties()
.Build();