.gitignore 2.7 KB

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