.gitignore 1.8 KB

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