-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
807 additions
and
913 deletions.
There are no files selected for viewing
9 changes: 4 additions & 5 deletions
9
src/My.Extensions.Localization.Json/Caching/IResourceNamesCache.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,10 +1,9 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace My.Extensions.Localization.Json.Caching | ||
namespace My.Extensions.Localization.Json.Caching; | ||
|
||
public interface IResourceNamesCache | ||
{ | ||
public interface IResourceNamesCache | ||
{ | ||
IList<string> GetOrAdd(string name, Func<string, IList<string>> valueFactory); | ||
} | ||
IList<string> GetOrAdd(string name, Func<string, IList<string>> valueFactory); | ||
} |
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
9 changes: 4 additions & 5 deletions
9
src/My.Extensions.Localization.Json/Internal/IResourceStringProvider.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,10 +1,9 @@ | ||
using System.Collections.Generic; | ||
using System.Globalization; | ||
|
||
namespace My.Extensions.Localization.Json.Internal | ||
namespace My.Extensions.Localization.Json.Internal; | ||
|
||
public interface IResourceStringProvider | ||
{ | ||
public interface IResourceStringProvider | ||
{ | ||
IList<string> GetAllResourceStrings(CultureInfo culture, bool throwOnMissing); | ||
} | ||
IList<string> GetAllResourceStrings(CultureInfo culture, bool throwOnMissing); | ||
} |
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
Oops, something went wrong.