.gitignore 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. # Visual Studio 2015 cache/options directory
  8. .vs/
  9. # Build results
  10. [Dd]ebug/
  11. [Dd]ebugPublic/
  12. [Rr]elease/
  13. [Rr]eleases/
  14. x64/
  15. build/
  16. bld/
  17. [Bb]in/
  18. [Oo]bj/
  19. # Roslyn cache directories
  20. *.ide/
  21. # MSTest test Results
  22. [Tt]est[Rr]esult*/
  23. [Bb]uild[Ll]og.*
  24. #NUNIT
  25. *.VisualState.xml
  26. TestResult.xml
  27. # Build Results of an ATL Project
  28. [Dd]ebugPS/
  29. [Rr]eleasePS/
  30. dlldata.c
  31. *_i.c
  32. *_p.c
  33. *_i.h
  34. *.ilk
  35. *.meta
  36. *.obj
  37. *.pch
  38. *.pdb
  39. *.pgc
  40. *.pgd
  41. *.rsp
  42. *.sbr
  43. *.tlb
  44. *.tli
  45. *.tlh
  46. *.tmp
  47. *.tmp_proj
  48. *.log
  49. *.vspscc
  50. *.vssscc
  51. .builds
  52. *.pidb
  53. *.svclog
  54. *.scc
  55. # Chutzpah Test files
  56. _Chutzpah*
  57. # Visual C++ cache files
  58. ipch/
  59. *.aps
  60. *.ncb
  61. *.opensdf
  62. *.sdf
  63. *.cachefile
  64. # Visual Studio profiler
  65. *.psess
  66. *.vsp
  67. *.vspx
  68. # TFS 2012 Local Workspace
  69. $tf/
  70. # Guidance Automation Toolkit
  71. *.gpState
  72. # ReSharper is a .NET coding add-in
  73. _ReSharper*/
  74. *.[Rr]e[Ss]harper
  75. *.DotSettings.user
  76. # JustCode is a .NET coding addin-in
  77. .JustCode
  78. # TeamCity is a build add-in
  79. _TeamCity*
  80. # DotCover is a Code Coverage Tool
  81. *.dotCover
  82. # NCrunch
  83. _NCrunch_*
  84. .*crunch*.local.xml
  85. # MightyMoose
  86. *.mm.*
  87. AutoTest.Net/
  88. # Web workbench (sass)
  89. .sass-cache/
  90. # Installshield output folder
  91. [Ee]xpress/
  92. # DocProject is a documentation generator add-in
  93. DocProject/buildhelp/
  94. DocProject/Help/*.HxT
  95. DocProject/Help/*.HxC
  96. DocProject/Help/*.hhc
  97. DocProject/Help/*.hhk
  98. DocProject/Help/*.hhp
  99. DocProject/Help/Html2
  100. DocProject/Help/html
  101. # Click-Once directory
  102. publish/
  103. # Publish Web Output
  104. *.[Pp]ublish.xml
  105. *.azurePubxml
  106. ## TODO: Comment the next line if you want to checkin your
  107. ## web deploy settings but do note that will include unencrypted
  108. ## passwords
  109. *.pubxml
  110. # NuGet Packages Directory
  111. packages/*
  112. ## TODO: If the tool you use requires repositories.config
  113. ## uncomment the next line
  114. #!packages/repositories.config
  115. # Enable "build/" folder in the NuGet Packages folder since
  116. # NuGet packages use it for MSBuild targets.
  117. # This line needs to be after the ignore of the build folder
  118. # (and the packages folder if the line above has been uncommented)
  119. !packages/build/
  120. # Windows Azure Build Output
  121. csx/
  122. *.build.csdef
  123. # Windows Store app package directory
  124. AppPackages/
  125. # Others
  126. sql/
  127. *.Cache
  128. ClientBin/
  129. [Ss]tyle[Cc]op.*
  130. ~$*
  131. *~
  132. *.dbmdl
  133. *.dbproj.schemaview
  134. *.pfx
  135. *.publishsettings
  136. node_modules/
  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. git_stats/*
  156. *.ncrunchproject
  157. StyleCop.Cache
  158. bin
  159. obj