Skip to content

Commit 11cab80

Browse files
committed
Merge branch 'shweaver/storage-helpers' of https://github.com/windows-toolkit/WindowsCommunityToolkit into shweaver/storage-helpers
2 parents 0e414ec + e61c0cd commit 11cab80

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Microsoft.Toolkit/Helpers/ObjectStorage/IFileStorageHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface IFileStorageHelper
2525
/// <param name="filePath">Path to the file that contains the object.</param>
2626
/// <param name="default">Default value of the object.</param>
2727
/// <returns>Waiting task until completion with the object in the file.</returns>
28-
Task<T> ReadFileAsync<T>(string filePath, T? @default = default);
28+
Task<T?> ReadFileAsync<T>(string filePath, T? @default = default);
2929

3030
/// <summary>
3131
/// Retrieves the listings for a folder and the item types.

nuget.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<packageSources>
33
<clear />
44
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
5-
<add key="AzureLatest" value="https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/WindowsCommunityToolkit-MainLatest/nuget/v3/index.json" protocolVersion="3" />
5+
<add key="AzureLatest" value="https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-MainLatest/nuget/v3/index.json" protocolVersion="3" />
66
<add key="MUX-Shared" value="https://pkgs.dev.azure.com/ms/microsoft-ui-xaml/_packaging/MUX-Shared/nuget/v3/index.json" />
77
</packageSources>
88
<disabledPackageSources>
99
<clear />
1010
</disabledPackageSources>
11-
</configuration>
11+
</configuration>

0 commit comments

Comments
 (0)