Skip to content

Commit

Permalink
fix winui location
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed Mar 22, 2022
1 parent e0c7015 commit 3d5956e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MonkeyCache/BarrelUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ internal static string GetBasePath(string applicationId)
basePath = NSSearchPath.GetDirectories(NSSearchPathDirectory.CachesDirectory, NSSearchPathDomain.User)[0];
#elif __ANDROID__
basePath = Application.Context.CacheDir.AbsolutePath;
#elif __UWP__
#elif __UWP__ || WINDOWS
basePath = Windows.Storage.ApplicationData.Current.LocalCacheFolder.Path;
#else
basePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
Expand Down

0 comments on commit 3d5956e

Please sign in to comment.