.gitignore 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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. bld/
  18. [Bb]in/
  19. [Oo]bj/
  20. # Visual Studio 2015 cache/options directory
  21. .vs/
  22. # Uncomment if you have tasks that create the project's static files in wwwroot
  23. #wwwroot/
  24. # MSTest test Results
  25. [Tt]est[Rr]esult*/
  26. [Bb]uild[Ll]og.*
  27. # NUNIT
  28. *.VisualState.xml
  29. TestResult.xml
  30. # Build Results of an ATL Project
  31. [Dd]ebugPS/
  32. [Rr]eleasePS/
  33. dlldata.c
  34. # DNX
  35. project.lock.json
  36. artifacts/
  37. *_i.c
  38. *_p.c
  39. *_i.h
  40. *.ilk
  41. *.meta
  42. *.pch
  43. *.pdb
  44. *.pgc
  45. *.pgd
  46. *.rsp
  47. *.sbr
  48. *.tlb
  49. *.tli
  50. *.tlh
  51. *.tmp
  52. *.tmp_proj
  53. *.log
  54. *.vspscc
  55. *.vssscc
  56. .builds
  57. *.pidb
  58. *.svclog
  59. *.scc
  60. # Chutzpah Test files
  61. _Chutzpah*
  62. # Visual C++ cache files
  63. ipch/
  64. *.aps
  65. *.ncb
  66. *.opendb
  67. *.opensdf
  68. *.sdf
  69. *.cachefile
  70. # Visual Studio profiler
  71. *.psess
  72. *.vsp
  73. *.vspx
  74. *.sap
  75. # TFS 2012 Local Workspace
  76. $tf/
  77. # Guidance Automation Toolkit
  78. *.gpState
  79. # ReSharper is a .NET coding add-in
  80. _ReSharper*/
  81. *.[Rr]e[Ss]harper
  82. *.DotSettings.user
  83. # JustCode is a .NET coding add-in
  84. .JustCode
  85. # TeamCity is a build add-in
  86. _TeamCity*
  87. # DotCover is a Code Coverage Tool
  88. *.dotCover
  89. # NCrunch
  90. _NCrunch_*
  91. .*crunch*.local.xml
  92. nCrunchTemp_*
  93. # MightyMoose
  94. *.mm.*
  95. AutoTest.Net/
  96. # Web workbench (sass)
  97. .sass-cache/
  98. # Installshield output folder
  99. [Ee]xpress/
  100. # DocProject is a documentation generator add-in
  101. DocProject/buildhelp/
  102. DocProject/Help/*.HxT
  103. DocProject/Help/*.HxC
  104. DocProject/Help/*.hhc
  105. DocProject/Help/*.hhk
  106. DocProject/Help/*.hhp
  107. DocProject/Help/Html2
  108. DocProject/Help/html
  109. # Click-Once directory
  110. publish/
  111. # Publish Web Output
  112. *.[Pp]ublish.xml
  113. *.azurePubxml
  114. # TODO: Comment the next line if you want to checkin your web deploy settings
  115. # but database connection strings (with potential passwords) will be unencrypted
  116. *.pubxml
  117. *.publishproj
  118. # NuGet Packages
  119. *.nupkg
  120. # The packages folder can be ignored because of Package Restore
  121. **/packages/*
  122. # except build/, which is used as an MSBuild target.
  123. !**/packages/build/
  124. # Uncomment if necessary however generally it will be regenerated when needed
  125. #!**/packages/repositories.config
  126. # NuGet v3's project.json files produces more ignoreable files
  127. *.nuget.props
  128. *.nuget.targets
  129. # Microsoft Azure Build Output
  130. csx/
  131. *.build.csdef
  132. # Microsoft Azure Emulator
  133. ecf/
  134. rcf/
  135. # Microsoft Azure ApplicationInsights config file
  136. ApplicationInsights.config
  137. # Windows Store app package directory
  138. AppPackages/
  139. BundleArtifacts/
  140. # Visual Studio cache files
  141. # files ending in .cache can be ignored
  142. *.[Cc]ache
  143. # but keep track of directories ending in .cache
  144. !*.[Cc]ache/
  145. # Others
  146. ClientBin/
  147. ~$*
  148. *~
  149. *.dbmdl
  150. *.dbproj.schemaview
  151. *.pfx
  152. *.publishsettings
  153. node_modules/
  154. orleans.codegen.cs
  155. # RIA/Silverlight projects
  156. Generated_Code/
  157. # Backup & report files from converting an old project file
  158. # to a newer Visual Studio version. Backup files are not needed,
  159. # because we have git ;-)
  160. _UpgradeReport_Files/
  161. Backup*/
  162. UpgradeLog*.XML
  163. UpgradeLog*.htm
  164. # SQL Server files
  165. *.mdf
  166. *.ldf
  167. # Business Intelligence projects
  168. *.rdl.data
  169. *.bim.layout
  170. *.bim_*.settings
  171. # Microsoft Fakes
  172. FakesAssemblies/
  173. # GhostDoc plugin setting file
  174. *.GhostDoc.xml
  175. # Node.js Tools for Visual Studio
  176. .ntvs_analysis.dat
  177. # Visual Studio 6 build log
  178. *.plg
  179. # Visual Studio 6 workspace options file
  180. *.opt
  181. # Visual Studio LightSwitch build output
  182. **/*.HTMLClient/GeneratedArtifacts
  183. **/*.DesktopClient/GeneratedArtifacts
  184. **/*.DesktopClient/ModelManifest.xml
  185. **/*.Server/GeneratedArtifacts
  186. **/*.Server/ModelManifest.xml
  187. _Pvt_Extensions
  188. # Paket dependency manager
  189. .paket/paket.exe
  190. # FAKE - F# Make
  191. .fake/