Update of GeneralMappingStrategy.cs

Fix to PreLoadedAssembly as XML was not working addition of [XmlIgnoreAttribute]
This commit is contained in:
DaveTTS 2017-04-27 17:13:49 +01:00 committed by GitHub
parent 5643bab099
commit d5edfea5cf

View file

@ -47,6 +47,7 @@ namespace AsterNET.FastAGI.MappingStrategies
/// </summary>
public string ScriptAssmebly { get; set; }
[XmlIgnoreAttribute]
public Assembly PreLoadedAssembly { get; set; }
public static List<ScriptMapping> LoadMappings(string pathToXml)
@ -184,4 +185,4 @@ namespace AsterNET.FastAGI.MappingStrategies
}
}
}
}