.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. # Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.sln.docstates
  7. */.vs
  8. .env
  9. # Build results
  10. [Dd]ebug/
  11. [Rr]elease/
  12. x64/
  13. [Bb]in/
  14. [Oo]bj/
  15. # MSTest test Results
  16. [Tt]est[Rr]esult*/
  17. [Bb]uild[Ll]og.*
  18. *_i.c
  19. *_p.c
  20. *_i.h
  21. *.ilk
  22. *.meta
  23. *.obj
  24. *.pch
  25. *.pdb
  26. *.pgc
  27. *.pgd
  28. *.rsp
  29. *.sbr
  30. *.tlb
  31. *.tli
  32. *.tlh
  33. *.tmp
  34. *.tmp_proj
  35. *.log
  36. *.vspscc
  37. *.vssscc
  38. .builds
  39. *.pidb
  40. *.log
  41. *.svclog
  42. *.scc
  43. # Visual C++ cache files
  44. ipch/
  45. *.aps
  46. *.ncb
  47. *.opensdf
  48. *.sdf
  49. *.cachefile
  50. # Visual Studio profiler
  51. *.psess
  52. *.vsp
  53. *.vspx
  54. # Guidance Automation Toolkit
  55. *.gpState
  56. # ReSharper is a .NET coding add-in
  57. _ReSharper*/
  58. *.[Rr]e[Ss]harper
  59. *.DotSettings.user
  60. # Click-Once directory
  61. publish/
  62. # Publish Web Output
  63. *.Publish.xml
  64. *.pubxml
  65. *.azurePubxml
  66. # NuGet Packages Directory
  67. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  68. packages/
  69. ## TODO: If the tool you use requires repositories.config, also uncomment the next line
  70. !packages/repositories.config
  71. # Windows Azure Build Output
  72. csx/
  73. *.build.csdef
  74. # Windows Store app package directory
  75. AppPackages/
  76. # Others
  77. sql/
  78. *.Cache
  79. ClientBin/
  80. [Ss]tyle[Cc]op.*
  81. ![Ss]tyle[Cc]op.targets
  82. ~$*
  83. *~
  84. *.dbmdl
  85. *.[Pp]ublish.xml
  86. *.publishsettings
  87. # RIA/Silverlight projects
  88. Generated_Code/
  89. # Backup & report files from converting an old project file to a newer
  90. # Visual Studio version. Backup files are not needed, because we have git ;-)
  91. _UpgradeReport_Files/
  92. Backup*/
  93. UpgradeLog*.XML
  94. UpgradeLog*.htm
  95. # SQL Server files
  96. App_Data/*.mdf
  97. App_Data/*.ldf
  98. # =========================
  99. # Windows detritus
  100. # =========================
  101. # Windows image file caches
  102. Thumbs.db
  103. ehthumbs.db
  104. # Folder config file
  105. Desktop.ini
  106. # Recycle Bin used on file shares
  107. $RECYCLE.BIN/
  108. # Mac desktop service store files
  109. .DS_Store
  110. _NCrunch*