Skip to content

Commit

Permalink
fix: remove [Obsolete] for ConfigurationHelper mthd
Browse files Browse the repository at this point in the history
  • Loading branch information
asvol committed Dec 24, 2024
1 parent 9c9cb72 commit b3ffb02
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/Asv.Cfg/IConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public static void ValidateKey(string key)

public static IEqualityComparer<string> DefaultKeyComparer { get; } = StringComparer.InvariantCultureIgnoreCase;

[Obsolete("Use Get<TPocoType>(string key, Lazy<TPocoType> defaultValue)")]
public static TPocoType Get<TPocoType>(this IConfiguration src, string key, TPocoType defaultValue)
{
return src.Get(key, new Lazy<TPocoType>(() => defaultValue));
Expand Down
4 changes: 1 addition & 3 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<Project>
<PropertyGroup>
<ProductVersion>3.0.0-dev.13</ProductVersion>
<ProductPrevVersion>3.0.0</ProductPrevVersion>
<ProductVersion>3.0.1</ProductVersion>
<R3Version>1.2.9</R3Version>
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
<ApiCompatVersion>8.0.200</ApiCompatVersion>
<ZLoggerVersion>2.5.5</ZLoggerVersion>
<DeepEqualVersion>4.2.1</DeepEqualVersion>
<AutoFixtureVersion>4.18.1</AutoFixtureVersion>
Expand Down

0 comments on commit b3ffb02

Please sign in to comment.