.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. # ===========================================
  2. # .NET / Visual Studio / Rider
  3. # ===========================================
  4. # Build results
  5. [Bb]in/
  6. [Oo]bj/
  7. [Ll]og/
  8. [Ll]ogs/
  9. x64/
  10. x86/
  11. [Aa][Rr][Mm]/
  12. [Aa][Rr][Mm]64/
  13. bld/
  14. [Bb]uild/
  15. [Dd]ebug/
  16. [Rr]elease/
  17. publish/
  18. # Visual Studio
  19. .vs/
  20. *.user
  21. *.suo
  22. *.userosscache
  23. *.sln.docstates
  24. *.rsuser
  25. *_i.c
  26. *_p.c
  27. *_h.h
  28. *.ilk
  29. *.obj
  30. *.pch
  31. *.pdb
  32. *.pgc
  33. *.pgd
  34. *.rsp
  35. *.sbr
  36. *.tlb
  37. *.tli
  38. *.tlh
  39. *.tmp
  40. *.vspscc
  41. *.vssscc
  42. .builds
  43. *.pidb
  44. *.svclog
  45. *.scc
  46. # Rider
  47. .idea/
  48. *.sln.iml
  49. # Visual Studio Code
  50. .vscode/
  51. # User-specific files
  52. *.DotSettings.user
  53. # NuGet
  54. *.nupkg
  55. *.snupkg
  56. .nuget/
  57. packages/
  58. project.lock.json
  59. project.fragment.lock.json
  60. artifacts/
  61. # ===========================================
  62. # OS Generated
  63. # ===========================================
  64. .DS_Store
  65. .DS_Store?
  66. ._*
  67. .Spotlight-V100
  68. .Trashes
  69. ehthumbs.db
  70. Thumbs.db
  71. desktop.ini
  72. # ===========================================
  73. # Sensitive Information - IMPORTANT!
  74. # ===========================================
  75. # App settings with passwords
  76. appsettings.Development.json
  77. appsettings.Local.json
  78. appsettings.Production.json
  79. # Connection strings and secrets
  80. secrets.json
  81. *.secrets
  82. *.pfx
  83. *.p12
  84. # Environment files
  85. .env
  86. .env.local
  87. .env.*.local
  88. *.env
  89. # ===========================================
  90. # Logs
  91. # ===========================================
  92. logs/
  93. *.log
  94. nlog-*.log
  95. # ===========================================
  96. # Test results
  97. # ===========================================
  98. [Tt]est[Rr]esult*/
  99. *.trx
  100. *.Coverage
  101. *.coveragexml
  102. coverage*.json
  103. coverage*.xml
  104. coverage*.info
  105. # ===========================================
  106. # Database & Migration files
  107. # ===========================================
  108. *.mdf
  109. *.ldf
  110. *.ndf
  111. migration*.sql
  112. # ===========================================
  113. # Temporary files
  114. # ===========================================
  115. *.tmp
  116. *.temp
  117. *.bak
  118. *.swp
  119. *~
  120. ~$*
  121. # ===========================================
  122. # Project specific
  123. # ===========================================
  124. # DotnetLib (external library - not tracked)
  125. # lib/*.dll
  126. # Node modules (if using npm for frontend)
  127. node_modules/
  128. # wwwroot uploads
  129. wwwroot/uploads/
  130. # Generated documentation
  131. docs/generated/