説明なし

.gitignore 1.8KB

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