-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoalesce.toml
More file actions
59 lines (52 loc) · 1.16 KB
/
Copy pathcoalesce.toml
File metadata and controls
59 lines (52 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# .NET project preset for Coalesce.
# Excludes common directories like 'bin', 'obj', and '.vs'.
# Path for the final merged output file.
OutputFilePath = "coalesce.md"
# List of source directories to scan for files.
SourceDirectoryPaths = [
"Coalesce",
"Coalesce.Tests"
]
# (Whitelist) To process ONLY specific file types, add their extensions here (e.g., ".cs", ".py").
# If this list is empty, Coalesce processes ALL files not matched by other exclusion rules.
IncludeExtensions = [
".cs",
".csproj",
".sln",
".json",
".xml",
".md",
".txt"
]
# (Blacklist) Explicitly skip files with these extensions.
ExcludeExtensions = []
# Skip directories with these names (case-insensitive).
ExcludeDirectoryNames = [
"bin",
"obj",
".vs",
"Properties",
".git",
"packages"
]
# Skip files with these names (case-insensitive).
ExcludeFileNames = [
".DS_Store",
"Thumbs.db",
"coalesce.toml"
]
# For these file types, only include their path in the output, not their content.
# Useful for binary files like images, DLLs, etc.
PathOnlyExtensions = [
".png",
".jpg",
".jpeg",
".gif",
".svg",
".ico",
".dll",
".exe",
".so",
".bin",
".pdf"
]