OSDN Git Service

Plugins: Fix a crash on Window XP
[winmerge-jp/winmerge-jp.git] / Filters / Merge_VC_loose.flt
1 ## This is a directory/file filter for WinMerge
2 ## This filter suppresses various binaries found in Visual C++ source trees
3 name: Visual C++ loose
4 desc: Suppresses various binaries found in Visual C++ source trees
5
6 ## This is an inclusive (loose) filter
7 ## (it lets through everything not specified)
8 def: include
9
10 ## Filters for filenames begin with f:
11 ## Filters for directories begin with d:
12 ## (Inline comments begin with " ##" and extend to the end of the line)
13
14 f: \.aps$ ## VC Binary version of resource file, for quick loading
15 f: \.bsc$ ## VC Browser database
16 f: \.clw$ ## VC class-wizard status file
17 f: \.dll$ ## Windows DLL
18 f: \.exe$ ## Windows/DOS executable
19 f: \.exp$ ## VC library export file
20 f: ^BuildLog.htm$ ## VC build log file
21 f: ^vc\d+\.idb$ ## VC Minimal rebuild dependency file
22 f: \.ilk$ ## VC incremental linker memory file
23 f: \.lib$ ## compiled libraries
24 f: \.ncb$ ## VC parser information file (class view & component gallery stuff)
25 f: \.obj$ ## VC object module file
26 f: \.pch$ ## VC precompiled header file
27 f: \.pdb$ ## VC program database file (debugging symbolic information)
28 f: \.sbr$ ## VC source browser file (used to create bsc file)
29 f: \.res$ ## VC compiled resources file (output of RC [resource compiler])
30 f: \.suo$ ## VC options file (binary)
31 f: \.ncb$ ## VC Intellisense file
32 f: \.opt$ ## VC project options file
33 f: \.bak$ ## backup
34 f: \.sdf$ ## SQL Server Compact Edition Database File
35 f: \.VC.db$ ## VS Solution Database File
36 f: \.idb$ ## VC Rebuild Dependency Information
37
38 d: \\\.svn$ ## Subversion working copy
39 d: \\_svn$  ## Subversion working copy ASP.NET Hack
40 d: \\cvs$   ## CVS control directory
41 d: \\\.git$ ## Git directory
42 d: \\\.bzr$ ## Bazaar branch
43 d: \\\.hg$ ## Mercurial repository
44 d: \\\.vs$ ## A hidden folder that stores .suo and *.db files
45 d: \\ipch$ ## Intellisense cache for precompiled header file
46