.gitignore 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. # -----------------------------------------------------------------------------
  2. #
  3. # TITLE: .gitignore
  4. # ACKNOWLEDGEMENTS: https://www.gitignore.io/api/aspnetcore
  5. #
  6. # -----------------------------------------------------------------------------
  7. # -----------------------------------------------------------------------------
  8. ### ASPNETCore ###
  9. ## Ignore Visual Studio temporary files, build results, and
  10. ## files generated by popular Visual Studio add-ons.
  11. # User-specific files
  12. *.suo
  13. *.user
  14. *.userosscache
  15. *.sln.docstates
  16. # User-specific files (MonoDevelop/Xamarin Studio)
  17. *.userprefs
  18. # Build results
  19. [Dd]ebug/
  20. [Dd]ebugPublic/
  21. [Rr]elease/
  22. [Rr]eleases/
  23. x64/
  24. x86/
  25. bld/
  26. [Bb]in/
  27. [Oo]bj/
  28. [Ll]og/
  29. # Visual Studio 2015 cache/options directory
  30. .vs/
  31. # Uncomment if you have tasks that create the project's static files in wwwroot
  32. #wwwroot/
  33. # MSTest test Results
  34. [Tt]est[Rr]esult*/
  35. [Bb]uild[Ll]og.*
  36. # NUNIT
  37. *.VisualState.xml
  38. TestResult.xml
  39. # Build Results of an ATL Project
  40. [Dd]ebugPS/
  41. [Rr]eleasePS/
  42. dlldata.c
  43. # DNX
  44. project.lock.json
  45. project.fragment.lock.json
  46. artifacts/
  47. *_i.c
  48. *_p.c
  49. *_i.h
  50. *.ilk
  51. *.meta
  52. *.obj
  53. *.pch
  54. *.pdb
  55. *.pgc
  56. *.pgd
  57. *.rsp
  58. *.sbr
  59. *.tlb
  60. *.tli
  61. *.tlh
  62. *.tmp
  63. *.tmp_proj
  64. *.log
  65. *.vspscc
  66. *.vssscc
  67. .builds
  68. *.pidb
  69. *.svclog
  70. *.scc
  71. # Chutzpah Test files
  72. _Chutzpah*
  73. # Visual C++ cache files
  74. ipch/
  75. *.aps
  76. *.ncb
  77. *.opendb
  78. *.opensdf
  79. *.sdf
  80. *.cachefile
  81. *.VC.db
  82. *.VC.VC.opendb
  83. # Visual Studio profiler
  84. *.psess
  85. *.vsp
  86. *.vspx
  87. *.sap
  88. # TFS 2012 Local Workspace
  89. $tf/
  90. # Guidance Automation Toolkit
  91. *.gpState
  92. # ReSharper is a .NET coding add-in
  93. _ReSharper*/
  94. *.[Rr]e[Ss]harper
  95. *.DotSettings.user
  96. # JustCode is a .NET coding add-in
  97. .JustCode
  98. # TeamCity is a build add-in
  99. _TeamCity*
  100. # DotCover is a Code Coverage Tool
  101. *.dotCover
  102. # Visual Studio code coverage results
  103. *.coverage
  104. *.coveragexml
  105. # NCrunch
  106. _NCrunch_*
  107. .*crunch*.local.xml
  108. nCrunchTemp_*
  109. # MightyMoose
  110. *.mm.*
  111. AutoTest.Net/
  112. # Web workbench (sass)
  113. .sass-cache/
  114. # Installshield output folder
  115. [Ee]xpress/
  116. # DocProject is a documentation generator add-in
  117. DocProject/buildhelp/
  118. DocProject/Help/*.HxT
  119. DocProject/Help/*.HxC
  120. DocProject/Help/*.hhc
  121. DocProject/Help/*.hhk
  122. DocProject/Help/*.hhp
  123. DocProject/Help/Html2
  124. DocProject/Help/html
  125. # Click-Once directory
  126. publish/
  127. # Publish Web Output
  128. *.[Pp]ublish.xml
  129. *.azurePubxml
  130. # TODO: Comment the next line if you want to checkin your web deploy settings
  131. # but database connection strings (with potential passwords) will be unencrypted
  132. #*.pubxml
  133. *.publishproj
  134. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  135. # checkin your Azure Web App publish settings, but sensitive information contained
  136. # in these scripts will be unencrypted
  137. PublishScripts/
  138. # NuGet Packages
  139. *.nupkg
  140. # The packages folder can be ignored because of Package Restore
  141. **/packages/*
  142. # except build/, which is used as an MSBuild target.
  143. !**/packages/build/
  144. # Uncomment if necessary however generally it will be regenerated when needed
  145. #!**/packages/repositories.config
  146. # NuGet v3's project.json files produces more ignoreable files
  147. *.nuget.props
  148. *.nuget.targets
  149. # Microsoft Azure Build Output
  150. csx/
  151. *.build.csdef
  152. # Microsoft Azure Emulator
  153. ecf/
  154. rcf/
  155. # Windows Store app package directories and files
  156. AppPackages/
  157. BundleArtifacts/
  158. Package.StoreAssociation.xml
  159. _pkginfo.txt
  160. # Visual Studio cache files
  161. # files ending in .cache can be ignored
  162. *.[Cc]ache
  163. # but keep track of directories ending in .cache
  164. !*.[Cc]ache/
  165. # Others
  166. ClientBin/
  167. ~$*
  168. *~
  169. *.dbmdl
  170. *.dbproj.schemaview
  171. *.jfm
  172. *.pfx
  173. *.publishsettings
  174. node_modules/
  175. orleans.codegen.cs
  176. # Since there are multiple workflows, uncomment next line to ignore bower_components
  177. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  178. #bower_components/
  179. # RIA/Silverlight projects
  180. Generated_Code/
  181. # Backup & report files from converting an old project file
  182. # to a newer Visual Studio version. Backup files are not needed,
  183. # because we have git ;-)
  184. _UpgradeReport_Files/
  185. Backup*/
  186. UpgradeLog*.XML
  187. UpgradeLog*.htm
  188. # SQL Server files
  189. *.mdf
  190. *.ldf
  191. # Business Intelligence projects
  192. *.rdl.data
  193. *.bim.layout
  194. *.bim_*.settings
  195. # Microsoft Fakes
  196. FakesAssemblies/
  197. # GhostDoc plugin setting file
  198. *.GhostDoc.xml
  199. # Node.js Tools for Visual Studio
  200. .ntvs_analysis.dat
  201. # Visual Studio 6 build log
  202. *.plg
  203. # Visual Studio 6 workspace options file
  204. *.opt
  205. # Visual Studio LightSwitch build output
  206. **/*.HTMLClient/GeneratedArtifacts
  207. **/*.DesktopClient/GeneratedArtifacts
  208. **/*.DesktopClient/ModelManifest.xml
  209. **/*.Server/GeneratedArtifacts
  210. **/*.Server/ModelManifest.xml
  211. _Pvt_Extensions
  212. # Paket dependency manager
  213. .paket/paket.exe
  214. paket-files/
  215. # FAKE - F# Make
  216. .fake/
  217. # JetBrains Rider
  218. .idea/
  219. *.sln.iml
  220. # CodeRush
  221. .cr/
  222. # Python Tools for Visual Studio (PTVS)
  223. __pycache__/
  224. *.pyc
  225. # Cake - Uncomment if you are using it
  226. # tools/
  227. # End of https://www.gitignore.io/api/aspnetcore