.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ########################################
  2. # OS
  3. ########################################
  4. .DS_Store
  5. Thumbs.db
  6. ########################################
  7. # Visual Studio
  8. ########################################
  9. .vs/
  10. *.user
  11. *.suo
  12. *.userosscache
  13. *.sln.docstates
  14. ########################################
  15. # Visual Studio Code
  16. ########################################
  17. .vscode/*
  18. !.vscode/settings.json
  19. !.vscode/tasks.json
  20. !.vscode/launch.json
  21. !.vscode/extensions.json
  22. ########################################
  23. # Build results
  24. ########################################
  25. bin/
  26. obj/
  27. out/
  28. ########################################
  29. # .NET
  30. ########################################
  31. *.dll
  32. *.exe
  33. *.pdb
  34. *.cache
  35. *.log
  36. *.tmp
  37. *.rsp
  38. *.nupkg
  39. *.snupkg
  40. project.lock.json
  41. project.fragment.lock.json
  42. artifacts/
  43. ########################################
  44. # ASP.NET Core
  45. ########################################
  46. appsettings.Development.json
  47. appsettings.Local.json
  48. appsettings.*.json
  49. !appsettings.json
  50. ########################################
  51. # User secrets
  52. ########################################
  53. secrets.json
  54. ########################################
  55. # Entity Framework
  56. ########################################
  57. Migrations/*.cs
  58. !Migrations/*Snapshot.cs
  59. ########################################
  60. # Test results
  61. ########################################
  62. TestResults/
  63. coverage/
  64. *.coverage
  65. *.coveragexml
  66. ########################################
  67. # Docker
  68. ########################################
  69. .dockerignore
  70. docker-compose.override.yml
  71. ########################################
  72. # Logs
  73. ########################################
  74. logs/
  75. *.log
  76. ########################################
  77. # Node / Frontend (if used)
  78. ########################################
  79. node_modules/
  80. npm-debug.log*
  81. yarn-debug.log*
  82. yarn-error.log*
  83. pnpm-debug.log*
  84. ########################################
  85. # Environment variables
  86. ########################################
  87. .env
  88. .env.*
  89. ########################################
  90. # Publish output
  91. ########################################
  92. publish/
  93. ########################################
  94. # Rider / JetBrains
  95. ########################################
  96. .idea/
  97. *.sln.iml