Nicolas Rafalowski

Results 2 comments of Nicolas Rafalowski

in IOS this is what fixed the issue for me : remove the '/private' and add file:// fixIosFilePath(path: string) { if (path.indexOf('/private/') === 0) { path = 'file://' + path.substr(8);...

Same here when running a .NET CORE 3 Console app Installing from nuget the System.Configuration.ConfigurationManager fixed it Thanks @jmoceri34