.gitignore 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.userosscache
  7. *.sln.docstates
  8. # User-specific files (MonoDevelop/Xamarin Studio)
  9. *.userprefs
  10. # Build results
  11. [Dd]ebug/
  12. [Dd]ebugPublic/
  13. [Rr]elease/
  14. [Rr]eleases/
  15. x64/
  16. x86/
  17. build/
  18. bld/
  19. [Bb]in/
  20. [Oo]bj/
  21. # Visual Studo 2015 cache/options directory
  22. .vs/
  23. # MSTest test Results
  24. [Tt]est[Rr]esult*/
  25. [Bb]uild[Ll]og.*
  26. # NUNIT
  27. *.VisualState.xml
  28. TestResult.xml
  29. # Build Results of an ATL Project
  30. [Dd]ebugPS/
  31. [Rr]eleasePS/
  32. dlldata.c
  33. *_i.c
  34. *_p.c
  35. *_i.h
  36. *.ilk
  37. *.meta
  38. *.obj
  39. *.pch
  40. *.pdb
  41. *.pgc
  42. *.pgd
  43. *.rsp
  44. *.sbr
  45. *.tlb
  46. *.tli
  47. *.tlh
  48. *.tmp
  49. *.tmp_proj
  50. *.log
  51. *.vspscc
  52. *.vssscc
  53. .builds
  54. *.pidb
  55. *.svclog
  56. *.scc
  57. # Chutzpah Test files
  58. _Chutzpah*
  59. # Visual C++ cache files
  60. ipch/
  61. *.aps
  62. *.ncb
  63. *.opensdf
  64. *.sdf
  65. *.cachefile
  66. # Visual Studio profiler
  67. *.psess
  68. *.vsp
  69. *.vspx
  70. # TFS 2012 Local Workspace
  71. $tf/
  72. # Guidance Automation Toolkit
  73. *.gpState
  74. # ReSharper is a .NET coding add-in
  75. _ReSharper*/
  76. *.[Rr]e[Ss]harper
  77. *.DotSettings.user
  78. # JustCode is a .NET coding addin-in
  79. .JustCode
  80. # TeamCity is a build add-in
  81. _TeamCity*
  82. # DotCover is a Code Coverage Tool
  83. *.dotCover
  84. # NCrunch
  85. _NCrunch_*
  86. .*crunch*.local.xml
  87. # MightyMoose
  88. *.mm.*
  89. AutoTest.Net/
  90. # Web workbench (sass)
  91. .sass-cache/
  92. # Installshield output folder
  93. [Ee]xpress/
  94. # DocProject is a documentation generator add-in
  95. DocProject/buildhelp/
  96. DocProject/Help/*.HxT
  97. DocProject/Help/*.HxC
  98. DocProject/Help/*.hhc
  99. DocProject/Help/*.hhk
  100. DocProject/Help/*.hhp
  101. DocProject/Help/Html2
  102. DocProject/Help/html
  103. # Click-Once directory
  104. publish/
  105. # Publish Web Output
  106. *.[Pp]ublish.xml
  107. *.azurePubxml
  108. # TODO: Comment the next line if you want to checkin your web deploy settings
  109. # but database connection strings (with potential passwords) will be unencrypted
  110. *.pubxml
  111. *.publishproj
  112. # NuGet Packages
  113. *.nupkg
  114. # The packages folder can be ignored because of Package Restore
  115. **/packages/*
  116. # except build/, which is used as an MSBuild target.
  117. !**/packages/build/
  118. # Uncomment if necessary however generally it will be regenerated when needed
  119. #!**/packages/repositories.config
  120. # Windows Azure Build Output
  121. csx/
  122. *.build.csdef
  123. # Windows Store app package directory
  124. AppPackages/
  125. # Others
  126. *.[Cc]ache
  127. ClientBin/
  128. [Ss]tyle[Cc]op.*
  129. ~$*
  130. *~
  131. *.dbmdl
  132. *.dbproj.schemaview
  133. *.pfx
  134. *.publishsettings
  135. node_modules/
  136. bower_components/
  137. # RIA/Silverlight projects
  138. Generated_Code/
  139. # Backup & report files from converting an old project file
  140. # to a newer Visual Studio version. Backup files are not needed,
  141. # because we have git ;-)
  142. _UpgradeReport_Files/
  143. Backup*/
  144. UpgradeLog*.XML
  145. UpgradeLog*.htm
  146. # SQL Server files
  147. *.mdf
  148. *.ldf
  149. # Business Intelligence projects
  150. *.rdl.data
  151. *.bim.layout
  152. *.bim_*.settings
  153. # Microsoft Fakes
  154. FakesAssemblies/
  155. # Node.js Tools for Visual Studio
  156. .ntvs_analysis.dat
  157. # Visual Studio 6 build log
  158. *.plg
  159. # Visual Studio 6 workspace options file
  160. *.opt