Hi everyone,
when upgrading to .NET 6 and Esri.ArcGISRuntime 100.14.1 I am currently getting
a System.NullReferenceException by instantiating a KmlLayer with a KmlDataset (line 4).
Uri kmlUri = new Uri("someFile.kml", UriKind.RelativeOrAbsolute);
KmlDataset dataset = new KmlDataset(kmlUri);
await dataset.LoadAsync();
KmlLayer kmlLayer = new KmlLayer(dataset);
I had no problems with .NET Framework 4.8 and Esri.ArcGISRuntime 100.9.0 before.
When instantiating the KmlLayer with an Uri it works fine.
Would anyone of you have any advice as to what could be causing this?
Thanks in advance.