.gitignore 3.4 KB

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