-
Notifications
You must be signed in to change notification settings - Fork 757
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add feature flag for path overriding
- Loading branch information
1 parent
7ebf204
commit 8d92d3e
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#nullable enable | ||
|
||
namespace Uno; | ||
|
||
partial class WinRTFeatureConfiguration | ||
{ | ||
public static class ApplicationData | ||
{ | ||
#if __SKIA__ | ||
/// <summary> | ||
/// Allows overriding the root folder path that the application will use | ||
/// to store its TempState folder. | ||
/// </summary> | ||
/// <remarks>Only applies to Skia targets.</remarks> | ||
public static string? TemporaryFolderPathOverride { get; set; } | ||
|
||
/// <summary> | ||
/// Allows overriding the root folder that the application will use | ||
/// to store its application data folders (LocalFolder, RoamingFolder, etc.). | ||
/// Only applies to Skia targets. | ||
/// </summary> | ||
/// <remarks>Only applies to Skia targets.</remarks> | ||
public static string? ApplicationDataPathOverride { get; set; } | ||
#endif | ||
} | ||
} |