.gitignore 3.4 KB

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