-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoalesce.yaml
More file actions
54 lines (47 loc) · 1.1 KB
/
coalesce.yaml
File metadata and controls
54 lines (47 loc) · 1.1 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
# .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:
- DirectUI
- Sonorize
# (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.yaml
# 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