Adhere to ExcludedSubpaths while scanning directory for change

This commit is contained in:
Simon Lübeß
2026-04-13 20:05:41 +02:00
parent aad44dd835
commit 6bec99ab06
3 changed files with 37 additions and 18 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ internal record WatchedSource(string Path, WatchMode Mode)
/// <summary>
/// Only if Path points to a directory, a list of subdirectories to exclude from change checking.
/// </summary>
public List<string> ExcludedDirectories { get; init; } = new();
public List<string> ExcludedSubpaths { get; init; } = new();
/// <summary>
/// Only if Path points to a directory, whether to check for changes in subdirectories as well.
/// </summary>