With current Xamarin.Forms 2.3.0.107, I am trying to process xml and json files with Handlebars.net (1.7.1) and Newtonsoft.json(9.0.1), while in Debug all works fine in Relase is json data not injected. In plani C# console project everything works too.
Any thoughts?
string xmlSource = @"<?xml version=""1.0"" encoding=""utf-8"" ?>
<content>
<location longitude=""{{longitude}}"" latitude=""{{latitude}}"" precision=""{{precision}}"" />
</content>";
string jsonData = @"{
""longitude"" : 16.605371,
""latitude"" : 49.180376,
""precision"" : 10,
}";
var jsonDataEx = JsonConvert.DeserializeObject<ExpandoObject>(jsonData);
var template = Handlebars.Compile(xmlSource);
var result = template(jsonDataEx);