.gitignore 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. .DS_Store
  2. node_modules/
  3. npm-debug.log
  4. /Properties/launchSettings.json
  5. package-lock.json
  6. ## Ignore Visual Studio temporary files, build results, and
  7. ## files generated by popular Visual Studio add-ons.
  8. # User-specific files
  9. *.suo
  10. *.user
  11. *.userosscache
  12. *.sln.docstates
  13. # User-specific files (MonoDevelop/Xamarin Studio)
  14. *.userprefs
  15. # Build results
  16. [Dd]ebug/
  17. [Dd]ebugPublic/
  18. [Rr]elease/
  19. [Rr]eleases/
  20. x64/
  21. x86/
  22. build/
  23. bld/
  24. bin/
  25. Bin/
  26. obj/
  27. Obj/
  28. # Visual Studio 2015 cache/options directory
  29. .vs/
  30. /wwwroot/dist/**
  31. # Workaround for https://github.com/aspnet/JavaScriptServices/issues/235
  32. !/wwwroot/dist/_placeholder.txt
  33. /yarn.lock
  34. # MSTest test Results
  35. [Tt]est[Rr]esult*/
  36. [Bb]uild[Ll]og.*
  37. # NUNIT
  38. *.VisualState.xml
  39. TestResult.xml
  40. # Build Results of an ATL Project
  41. [Dd]ebugPS/
  42. [Rr]eleasePS/
  43. dlldata.c
  44. # DNX
  45. project.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. # 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. # Microsoft Azure Build Output
  138. csx/
  139. *.build.csdef
  140. # Microsoft Azure Emulator
  141. ecf/
  142. rcf/
  143. # Microsoft Azure ApplicationInsights config file
  144. ApplicationInsights.config
  145. # Windows Store app package directory
  146. AppPackages/
  147. BundleArtifacts/
  148. # Visual Studio cache files
  149. # files ending in .cache can be ignored
  150. *.[Cc]ache
  151. # but keep track of directories ending in .cache
  152. !*.[Cc]ache/
  153. # Others
  154. ClientBin/
  155. ~$*
  156. *~
  157. *.dbmdl
  158. *.dbproj.schemaview
  159. *.pfx
  160. *.publishsettings
  161. orleans.codegen.cs
  162. # Workaround for https://github.com/aspnet/JavaScriptServices/issues/235
  163. /node_modules/**
  164. !/node_modules/_placeholder.txt
  165. # RIA/Silverlight projects
  166. Generated_Code/
  167. # Backup & report files from converting an old project file
  168. # to a newer Visual Studio version. Backup files are not needed,
  169. # because we have git ;-)
  170. _UpgradeReport_Files/
  171. Backup*/
  172. UpgradeLog*.XML
  173. UpgradeLog*.htm
  174. # SQL Server files
  175. *.mdf
  176. *.ldf
  177. # Business Intelligence projects
  178. *.rdl.data
  179. *.bim.layout
  180. *.bim_*.settings
  181. # Microsoft Fakes
  182. FakesAssemblies/
  183. # GhostDoc plugin setting file
  184. *.GhostDoc.xml
  185. # Node.js Tools for Visual Studio
  186. .ntvs_analysis.dat
  187. # Visual Studio 6 build log
  188. *.plg
  189. # Visual Studio 6 workspace options file
  190. *.opt
  191. # Visual Studio LightSwitch build output
  192. **/*.HTMLClient/GeneratedArtifacts
  193. **/*.DesktopClient/GeneratedArtifacts
  194. **/*.DesktopClient/ModelManifest.xml
  195. **/*.Server/GeneratedArtifacts
  196. **/*.Server/ModelManifest.xml
  197. _Pvt_Extensions
  198. # Paket dependency manager
  199. .paket/paket.exe
  200. # FAKE - F# Make
  201. .fake/
  202. .vscode/