-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathwinmerge.flt
More file actions
33 lines (27 loc) · 1.02 KB
/
winmerge.flt
File metadata and controls
33 lines (27 loc) · 1.02 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
## This is a directory/file filter for WinMerge
## This filter suppresses various binaries found in Visual C# source trees
name: MyOwnFilter
desc: Suppresses various binaries found in Visual C# source trees
## This is an inclusive (loose) filter
## (it lets through everything not specified)
def: include
## Filters for filenames begin with f:
## Filters for directories begin with d:
## (Inline comments begin with " ##" and extend to the end of the line)
f: \.aps$ ## VC Binary version of resource file, for quick loading
f: \.bsc$ ## VC Browser database
f: \.dll$ ## Windows DLL
f: \.exe$ ## Windows executable
f: \.obj$ ## VC object module file
f: \.pdb$ ## VC program database file (debugging symbolic information)
f: \.res$ ## VC compiled resources file (output of RC [resource compiler])
f: \.suo$ ## VC options file (binary)
f: \.cache$ ## ??
f: \.resource$ ## Compiled resource file.
f: \.xfrm ## ??
f: \.bak$ ## backup
d: \\cvs$ ## CVS control directory
d: \\.svn$ ## Subversion control directory
d: \\.vs$
d: \\.git$
d: \\build$