.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. .DS_Store
  12. # User-specific files (MonoDevelop/Xamarin Studio)
  13. *.userprefs
  14. # Build results
  15. [Dd]ebug/
  16. [Dd]ebugPublic/
  17. [Rr]elease/
  18. [Rr]eleases/
  19. x64/
  20. x86/
  21. build/
  22. bld/
  23. [Bb]in/
  24. [Oo]bj/
  25. dist/
  26. package-lock.json
  27. # Visual Studio 2015 cache/options directory
  28. .vs/
  29. .vscode/
  30. # Uncomment if you have tasks that create the project's static files in wwwroot
  31. #wwwroot/
  32. # MSTest test Results
  33. [Tt]est[Rr]esult*/
  34. [Bb]uild[Ll]og.*
  35. # NUNIT
  36. *.VisualState.xml
  37. TestResult.xml
  38. # Build Results of an ATL Project
  39. [Dd]ebugPS/
  40. [Rr]eleasePS/
  41. dlldata.c
  42. # DNX
  43. project.lock.json
  44. artifacts/
  45. *_i.c
  46. *_p.c
  47. *_i.h
  48. *.ilk
  49. *.meta
  50. *.obj
  51. *.pch
  52. *.pdb
  53. *.pgc
  54. *.pgd
  55. *.rsp
  56. *.sbr
  57. *.tlb
  58. *.tli
  59. *.tlh
  60. *.tmp
  61. *.tmp_proj
  62. *.log
  63. *.vspscc
  64. *.vssscc
  65. .builds
  66. *.pidb
  67. *.svclog
  68. *.scc
  69. # Chutzpah Test files
  70. _Chutzpah*
  71. # Visual C++ cache files
  72. ipch/
  73. *.aps
  74. *.ncb
  75. *.opensdf
  76. *.sdf
  77. *.cachefile
  78. # Visual Studio profiler
  79. *.psess
  80. *.vsp
  81. *.vspx
  82. *.sap
  83. # TFS 2012 Local Workspace
  84. $tf/
  85. # Guidance Automation Toolkit
  86. *.gpState
  87. # ReSharper is a .NET coding add-in
  88. _ReSharper*/
  89. *.[Rr]e[Ss]harper
  90. *.DotSettings.user
  91. # JustCode is a .NET coding add-in
  92. .JustCode
  93. # TeamCity is a build add-in
  94. _TeamCity*
  95. # DotCover is a Code Coverage Tool
  96. *.dotCover
  97. # NCrunch
  98. _NCrunch_*
  99. .*crunch*.local.xml
  100. nCrunchTemp_*
  101. # MightyMoose
  102. *.mm.*
  103. AutoTest.Net/
  104. # Web workbench (sass)
  105. .sass-cache/
  106. # Installshield output folder
  107. [Ee]xpress/
  108. # DocProject is a documentation generator add-in
  109. DocProject/buildhelp/
  110. DocProject/Help/*.HxT
  111. DocProject/Help/*.HxC
  112. DocProject/Help/*.hhc
  113. DocProject/Help/*.hhk
  114. DocProject/Help/*.hhp
  115. DocProject/Help/Html2
  116. DocProject/Help/html
  117. # Click-Once directory
  118. publish/
  119. # Publish Web Output
  120. *.[Pp]ublish.xml
  121. *.azurePubxml
  122. # TODO: Comment the next line if you want to checkin your web deploy settings
  123. # but database connection strings (with potential passwords) will be unencrypted
  124. *.pubxml
  125. *.publishproj
  126. # NuGet Packages
  127. *.nupkg
  128. # The packages folder can be ignored because of Package Restore
  129. **/packages/*
  130. # except build/, which is used as an MSBuild target.
  131. !**/packages/build/
  132. # Uncomment if necessary however generally it will be regenerated when needed
  133. #!**/packages/repositories.config
  134. # Windows Azure Build Output
  135. csx/
  136. *.build.csdef
  137. # Windows Store app package directory
  138. AppPackages/
  139. # Visual Studio cache files
  140. # files ending in .cache can be ignored
  141. *.[Cc]ache
  142. # but keep track of directories ending in .cache
  143. !*.[Cc]ache/
  144. # Others
  145. ClientBin/
  146. [Ss]tyle[Cc]op.*
  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. # Node.js Tools for Visual Studio
  174. .ntvs_analysis.dat
  175. # Visual Studio 6 build log
  176. *.plg
  177. # Visual Studio 6 workspace options file
  178. *.opt
  179. # Visual Studio LightSwitch build output
  180. **/*.HTMLClient/GeneratedArtifacts
  181. **/*.DesktopClient/GeneratedArtifacts
  182. **/*.DesktopClient/ModelManifest.xml
  183. **/*.Server/GeneratedArtifacts
  184. **/*.Server/ModelManifest.xml
  185. _Pvt_Extensions