Skip to content

Commit de0b214

Browse files
Make the constructor public
So we can easily extend the providers overriding the functions that return this class. The previous fix Serializing and deserializing using json doesn't work anymore.
1 parent f191560 commit de0b214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ClientDependency.Core/CompositeFiles/CompositeFileMap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace ClientDependency.Core.CompositeFiles
1313
public class CompositeFileMap
1414
{
1515

16-
internal CompositeFileMap(string key, string compressionType, string file, IEnumerable<string> filePaths, int version)
16+
public CompositeFileMap(string key, string compressionType, string file, IEnumerable<string> filePaths, int version)
1717
{
1818
DependentFiles = filePaths;
1919
FileKey = key;

0 commit comments

Comments
 (0)