.gitignore 3.5 KB

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