Sparksteam
Sparksteam
I'm now getting this error with the LocalStorage on mac. Are there plans to implement a solution in the main branch and publishing an updated version? Thanks.
So what do you think? Can we get this fixed soon? Thanks
@haritowa Hope not too much longer.
Thanks @haritowa, I may have to use that fork eventually. Did you build a binding class for OS X, or are you going native across-the-board?
Why would it need to run on Windows? Is there bait-and-switch going on in the NuGet?
Yeah Daniel, it is somewhat cumbersome. And expensive to buy a MAC. I’d be more than happy to build binaries for you and upload them somewhere. Allan From: Daniel Plaisted...
@haritowa - Is this only change you had to make to the master code, in DesktopFileSystem.LocalStorage? #elif MAC var documents = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); var localAppData = Path.Combine(documents, "Library"); #else and adding...
Thanks @haritowa . I diff'd the files with the current master and although there were some differences, it doesn't look like any of them contain any MAC specific changes. The...
@haritowa - I worked around this problem in my code by simply implementing my own GetStorageFolder with this code; IFolder storageFolder; #if _MAC var documents = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); var localAppData =...
Ok Daniel - PR #38 with the changes I think are required. I'm not sure how to go about testing it though. I have all the release binaries for PCLStorage.OSX....