Skip to content

Commit

Permalink
Load<T> 를 virtual로
Browse files Browse the repository at this point in the history
  • Loading branch information
Newp committed Feb 3, 2024
1 parent 2637d0c commit c53bf7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Npgg.Configuration/ConfigurationLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public string[] Split(string rowString)
}


public List<T> Load<T>(string tableString) where T : new()
public virtual List<T> Load<T>(string tableString) where T : new()
{
var type = typeof(T);
var result = new List<T>();
Expand Down
2 changes: 1 addition & 1 deletion src/Npgg.Configuration/Npgg.Configuration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Copyright></Copyright>
<Description>Csv,Tsv string to c# object deserializer</Description>
<PackageProjectUrl>https://github.com/Newp/Npgg.Configuration</PackageProjectUrl>
<Version>1.6.1</Version>
<Version>1.6.2</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<RepositoryUrl>https://github.com/Newp/Npgg.Configuration</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit c53bf7e

Please sign in to comment.