.gitignore 2.7 KB

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