.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. *.log
  9. [Dd]ebug/
  10. [Rr]elease/
  11. x64/
  12. build/
  13. [Bb]in/
  14. [Oo]bj/
  15. __pycache__/
  16. .idea/
  17. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  18. !packages/*/build/
  19. # MSTest test Results
  20. [Tt]est[Rr]esult*/
  21. [Bb]uild[Ll]og.*
  22. *_i.c
  23. *_p.c
  24. *.ilk
  25. *.meta
  26. *.obj
  27. *.pch
  28. *.pdb
  29. *.pgc
  30. *.pgd
  31. *.rsp
  32. *.sbr
  33. *.tlb
  34. *.tli
  35. *.tlh
  36. *.tmp
  37. *.tmp_proj
  38. *.log
  39. *.vspscc
  40. *.vssscc
  41. .builds
  42. *.pidb
  43. *.log
  44. *.scc
  45. # Visual C++ cache files
  46. ipch/
  47. *.aps
  48. *.ncb
  49. *.opensdf
  50. *.sdf
  51. *.cachefile
  52. # Visual Studio profiler
  53. *.psess
  54. *.vsp
  55. *.vspx
  56. # Guidance Automation Toolkit
  57. *.gpState
  58. # ReSharper is a .NET coding add-in
  59. _ReSharper*/
  60. *.[Rr]e[Ss]harper
  61. # TeamCity is a build add-in
  62. _TeamCity*
  63. # DotCover is a Code Coverage Tool
  64. *.dotCover
  65. # NCrunch
  66. *.ncrunch*
  67. .*crunch*.local.xml
  68. # Installshield output folder
  69. [Ee]xpress/
  70. # DocProject is a documentation generator add-in
  71. DocProject/buildhelp/
  72. DocProject/Help/*.HxT
  73. DocProject/Help/*.HxC
  74. DocProject/Help/*.hhc
  75. DocProject/Help/*.hhk
  76. DocProject/Help/*.hhp
  77. DocProject/Help/Html2
  78. DocProject/Help/html
  79. # Click-Once directory
  80. publish/
  81. # Publish Web Output
  82. *.Publish.xml
  83. # NuGet Packages Directory
  84. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  85. #packages/
  86. # Windows Azure Build Output
  87. csx
  88. *.build.csdef
  89. # Windows Store app package directory
  90. AppPackages/
  91. # Others
  92. sql/
  93. *.Cache
  94. ClientBin/
  95. [Ss]tyle[Cc]op.*
  96. ~$*
  97. *~
  98. *.dbmdl
  99. *.[Pp]ublish.xml
  100. *.pfx
  101. *.publishsettings
  102. # RIA/Silverlight projects
  103. Generated_Code/
  104. # Backup & report files from converting an old project file to a newer
  105. # Visual Studio version. Backup files are not needed, because we have git ;-)
  106. _UpgradeReport_Files/
  107. Backup*/
  108. UpgradeLog*.XML
  109. UpgradeLog*.htm
  110. # SQL Server files
  111. App_Data/*.mdf
  112. App_Data/*.ldf
  113. #LightSwitch generated files
  114. GeneratedArtifacts/
  115. _Pvt_Extensions/
  116. ModelManifest.xml
  117. # =========================
  118. # Windows detritus
  119. # =========================
  120. # Windows image file caches
  121. Thumbs.db
  122. ehthumbs.db
  123. # Folder config file
  124. Desktop.ini
  125. # Recycle Bin used on file shares
  126. $RECYCLE.BIN/
  127. # Mac desktop service store files
  128. .DS_Store