Enviroment
VS2017 15.8.1
Syncfusion 16.2460.0.41
1.rdlc - empty report
next part of code doesn't work if compile with .NET Native tool chain , if tool chain disabled all works fine.
var sFile =await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/RDLC/1.rdlc"));
Stream reportStream = await sFile.OpenStreamForReadAsync();
ReportViewer.ProcessingMode = ProcessingMode.Local;
ReportViewer.ExportMode = ExportMode.Local;
ReportViewer.LoadReport(reportStream);
ReportViewer.RefreshReport();
Please fix it. Could not publish UWP in MS Store.