Skip to content

Commit 6bf1905

Browse files
EngincanVCopilot
andauthored
Update framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/VirtualFileSetListExtensions.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 46ea662 commit 6bf1905

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/VirtualFileSetListExtensions.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,17 @@ private static IFileProvider CreateFileProvider(
6262
return new ManifestEmbeddedFileProvider(assembly, baseFolder);
6363
}
6464

65+
public static void ReplaceEmbeddedByPhysical<T>(
66+
[NotNull] this VirtualFileSetList fileSets,
67+
[NotNull] string physicalPath)
68+
{
69+
ReplaceEmbeddedByPhysical<T>(fileSets, physicalPath, ExclusionFilters.Sensitive);
70+
}
71+
6572
public static void ReplaceEmbeddedByPhysical<T>(
6673
[NotNull] this VirtualFileSetList fileSets,
6774
[NotNull] string physicalPath,
68-
ExclusionFilters exclusionFilters = ExclusionFilters.Sensitive)
75+
ExclusionFilters exclusionFilters)
6976
{
7077
Check.NotNull(fileSets, nameof(fileSets));
7178
Check.NotNullOrWhiteSpace(physicalPath, nameof(physicalPath));

0 commit comments

Comments
 (0)