/ .gitignore
.gitignore
  1  # Compiled Object files
  2  *.slo
  3  *.lo
  4  *.o
  5  *.obj
  6  
  7  # Compiled Dynamic libraries
  8  *.so
  9  *.dylib
 10  *.dll
 11  
 12  # Compiled Static libraries
 13  *.lai
 14  *.la
 15  *.a
 16  *.lib
 17  
 18  # Executables
 19  *.exe
 20  *.out
 21  *.app
 22  
 23  ## Ignore Visual Studio temporary files, build results, and
 24  ## files generated by popular Visual Studio add-ons.
 25  
 26  # User-specific files
 27  *.suo
 28  *.user
 29  *.sln.docstates
 30  
 31  # Build results
 32  
 33  [Dd]ebug/
 34  [Rr]elease/
 35  x64/
 36  build/
 37  [Bb]in/
 38  [Oo]bj/
 39  
 40  # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
 41  !packages/*/build/
 42  
 43  # MSTest test Results
 44  [Tt]est[Rr]esult*/
 45  [Bb]uild[Ll]og.*
 46  
 47  *_i.c
 48  *_p.c
 49  *.ilk
 50  *.meta
 51  *.obj
 52  *.pch
 53  *.pdb
 54  *.pgc
 55  *.pgd
 56  *.rsp
 57  *.sbr
 58  *.tlb
 59  *.tli
 60  *.tlh
 61  *.tmp
 62  *.tmp_proj
 63  *.log
 64  *.vspscc
 65  *.vssscc
 66  .builds
 67  *.pidb
 68  *.svclog
 69  *.scc
 70  
 71  # Visual C++ cache files
 72  ipch/
 73  *.aps
 74  *.ncb
 75  *.opensdf
 76  *.sdf
 77  *.cachefile
 78  
 79  # Visual Studio profiler
 80  *.psess
 81  *.vsp
 82  *.vspx
 83  
 84  # TFS 2012 Local Workspace
 85  $tf/
 86  
 87  # Guidance Automation Toolkit
 88  *.gpState
 89  
 90  # ReSharper is a .NET coding add-in
 91  _ReSharper*/
 92  *.[Rr]e[Ss]harper
 93  *.DotSettings.user
 94  
 95  # TeamCity is a build add-in
 96  _TeamCity*
 97  
 98  # DotCover is a Code Coverage Tool
 99  *.dotCover
100  
101  # NCrunch
102  *.ncrunch*
103  _NCrunch_*
104  .*crunch*.local.xml
105  
106  # Installshield output folder
107  [Ee]xpress/
108  
109  # DocProject is a documentation generator add-in
110  DocProject/buildhelp/
111  DocProject/Help/*.HxT
112  DocProject/Help/*.HxC
113  DocProject/Help/*.hhc
114  DocProject/Help/*.hhk
115  DocProject/Help/*.hhp
116  DocProject/Help/Html2
117  DocProject/Help/html
118  
119  # Click-Once directory
120  publish/
121  
122  # Publish Web Output
123  *.Publish.xml
124  
125  # NuGet Packages Directory
126  ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
127  #packages/
128  
129  # Windows Azure Build Output
130  csx
131  *.build.csdef
132  
133  # Windows Store app package directory
134  AppPackages/
135  
136  # Others
137  sql/
138  *.Cache
139  ClientBin/
140  [Ss]tyle[Cc]op.*
141  ~$*
142  *~
143  *.dbmdl
144  *.dbproj.schemaview
145  *.[Pp]ublish.xml
146  *.pfx
147  *.publishsettings
148  
149  # RIA/Silverlight projects
150  Generated_Code/
151  
152  # Backup & report files from converting an old project file to a newer
153  # Visual Studio version. Backup files are not needed, because we have git ;-)
154  _UpgradeReport_Files/
155  Backup*/
156  UpgradeLog*.XML
157  UpgradeLog*.htm
158  
159  # SQL Server files
160  App_Data/*.mdf
161  App_Data/*.ldf
162  
163  # Business Intelligence projects
164  *.rdl.data
165  *.bim.layout
166  *.bim_*.settings
167  
168  # Microsoft Fakes
169  FakesAssemblies/
170  
171  # =========================
172  # Windows detritus
173  # =========================
174  
175  # Windows image file caches
176  Thumbs.db
177  ehthumbs.db
178  
179  # Folder config file
180  Desktop.ini
181  
182  # Recycle Bin used on file shares
183  $RECYCLE.BIN/
184  
185  # Mac crap
186  .DS_Store
187  
188  # Unix build helper scripts
189  unix/config/compile
190  unix/config/config.guess
191  unix/config/config.sub
192  unix/config/depcomp
193  unix/config/install-sh
194  unix/config/missing