-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
28 changed files
with
244 additions
and
138 deletions.
There are no files selected for viewing
Binary file modified
BIN
+14.2 KB
(110%)
source/MauiSettings/.vs/MauiSettings/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file removed
BIN
-3.18 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/2699f809-e32e-4ae8-80be-70d269b6fd05.vsidx
Binary file not shown.
Binary file removed
BIN
-3.46 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/4df68b9e-d976-41a6-abef-474127ade475.vsidx
Binary file not shown.
Binary file removed
BIN
-31.5 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/59302834-2d63-4a24-89a2-f13c0c60566c.vsidx
Binary file not shown.
Binary file added
BIN
+40.8 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/783843db-26a2-4bc1-b223-ec2edcb7bce0.vsidx
Binary file not shown.
Binary file removed
BIN
-3.28 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/7c64a15f-6d6a-4096-a10a-01ccf9b029d8.vsidx
Binary file not shown.
Binary file added
BIN
+6.82 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/aab46994-7c4d-4465-a2a7-62978669406d.vsidx
Binary file not shown.
Binary file added
BIN
+18.1 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/ca0246c8-0874-4d5e-9ee1-727ec6d58327.vsidx
Binary file not shown.
Binary file added
BIN
+6.09 KB
...MauiSettings/.vs/MauiSettings/FileContentIndex/ce74586c-7f96-4abe-8d7b-2150f916b167.vsidx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
8 changes: 8 additions & 0 deletions
8
source/MauiSettings/MauiSettings/Attributes/MauiSettingAttribute.cs
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
7 changes: 7 additions & 0 deletions
7
source/MauiSettings/MauiSettings/Attributes/MauiSettingBaseAttribute.cs
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
7 changes: 7 additions & 0 deletions
7
source/MauiSettings/MauiSettings/Enums/MauiSettingsActions.cs
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
10 changes: 10 additions & 0 deletions
10
source/MauiSettings/MauiSettings/Enums/MauiSettingsTarget.cs
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,10 @@ | ||
namespace AndreasReitberger.Maui.Enums | ||
{ | ||
public enum MauiSettingsTarget | ||
{ | ||
Local, | ||
#if IOS | ||
ICloud, | ||
#endif | ||
} | ||
} |
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
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
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
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
284 changes: 159 additions & 125 deletions
284
source/MauiSettings/MauiSettings/MauiSettingsGeneric.cs
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
source/MauiSettings/MauiSettings/Platforms/Android/MauiSettingsGeneric.cs
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
namespace MauiSettings | ||
namespace AndreasReitberger.Maui | ||
{ | ||
// All the code in this file is only included on Android. | ||
public partial class MauiSettingsGeneric | ||
public partial class MauiSettingsGeneric<SO> where SO : new() | ||
{ | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
source/MauiSettings/MauiSettings/Platforms/MacCatalyst/MauiSettingsGeneric.cs
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
namespace MauiSettings | ||
namespace AndreasReitberger.Maui | ||
{ | ||
// All the code in this file is only included on Mac Catalyst. | ||
public partial class MauiSettingsGeneric | ||
public partial class MauiSettingsGeneric<SO> where SO : new() | ||
{ | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
source/MauiSettings/MauiSettings/Platforms/Tizen/MauiSettingsGeneric.cs
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
using System; | ||
|
||
namespace MauiSettings | ||
namespace AndreasReitberger.Maui | ||
{ | ||
// All the code in this file is only included on Tizen. | ||
public partial class MauiSettingsGeneric | ||
public partial class MauiSettingsGeneric<SO> where SO : new() | ||
{ | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
source/MauiSettings/MauiSettings/Platforms/Windows/MauiSettingsGeneric.cs
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
namespace MauiSettings | ||
namespace AndreasReitberger.Maui | ||
{ | ||
// All the code in this file is only included on Windows. | ||
public partial class MauiSettingsGeneric | ||
public partial class MauiSettingsGeneric<SO> where SO : new() | ||
{ | ||
} | ||
} |
24 changes: 21 additions & 3 deletions
24
source/MauiSettings/MauiSettings/Platforms/iOS/MauiSettingsGeneric.cs
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
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