您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

VisualStudio.gitignore 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. [Dd]ebugPublic/
  10. [Rr]elease/
  11. x64/
  12. build/
  13. bld/
  14. [Bb]in/
  15. [Oo]bj/
  16. # MSTest test Results
  17. [Tt]est[Rr]esult*/
  18. [Bb]uild[Ll]og.*
  19. #NUNIT
  20. *.VisualState.xml
  21. TestResult.xml
  22. *_i.c
  23. *_p.c
  24. *_i.h
  25. *.ilk
  26. *.meta
  27. *.obj
  28. *.pch
  29. *.pdb
  30. *.pgc
  31. *.pgd
  32. *.rsp
  33. *.sbr
  34. *.tlb
  35. *.tli
  36. *.tlh
  37. *.tmp
  38. *.tmp_proj
  39. *.log
  40. *.vspscc
  41. *.vssscc
  42. .builds
  43. *.pidb
  44. *.svclog
  45. *.scc
  46. # Chutzpah Test files
  47. _Chutzpah*
  48. # Visual C++ cache files
  49. ipch/
  50. *.aps
  51. *.ncb
  52. *.opensdf
  53. *.sdf
  54. *.cachefile
  55. # Visual Studio profiler
  56. *.psess
  57. *.vsp
  58. *.vspx
  59. # TFS 2012 Local Workspace
  60. $tf/
  61. # Guidance Automation Toolkit
  62. *.gpState
  63. # ReSharper is a .NET coding add-in
  64. _ReSharper*/
  65. *.[Rr]e[Ss]harper
  66. *.DotSettings.user
  67. # JustCode is a .NET coding addin-in
  68. .JustCode
  69. # TeamCity is a build add-in
  70. _TeamCity*
  71. # DotCover is a Code Coverage Tool
  72. *.dotCover
  73. # NCrunch
  74. *.ncrunch*
  75. _NCrunch_*
  76. .*crunch*.local.xml
  77. # MightyMoose
  78. *.mm.*
  79. AutoTest.Net/
  80. # Installshield output folder
  81. [Ee]xpress/
  82. # DocProject is a documentation generator add-in
  83. DocProject/buildhelp/
  84. DocProject/Help/*.HxT
  85. DocProject/Help/*.HxC
  86. DocProject/Help/*.hhc
  87. DocProject/Help/*.hhk
  88. DocProject/Help/*.hhp
  89. DocProject/Help/Html2
  90. DocProject/Help/html
  91. # Click-Once directory
  92. publish/
  93. # Publish Web Output
  94. *.[Pp]ublish.xml
  95. *.azurePubxml
  96. # NuGet Packages Directory
  97. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  98. #packages/*
  99. ## TODO: If the tool you use requires repositories.config, also uncomment the next line
  100. #!packages/repositories.config
  101. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  102. # This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
  103. !packages/build/
  104. # Windows Azure Build Output
  105. csx/
  106. *.build.csdef
  107. # Windows Store app package directory
  108. AppPackages/
  109. # Others
  110. sql/
  111. *.Cache
  112. ClientBin/
  113. [Ss]tyle[Cc]op.*
  114. ~$*
  115. *~
  116. *.dbmdl
  117. *.dbproj.schemaview
  118. *.pfx
  119. *.publishsettings
  120. node_modules/
  121. # RIA/Silverlight projects
  122. Generated_Code/
  123. # Backup & report files from converting an old project file to a newer
  124. # Visual Studio version. Backup files are not needed, because we have git ;-)
  125. _UpgradeReport_Files/
  126. Backup*/
  127. UpgradeLog*.XML
  128. UpgradeLog*.htm
  129. # SQL Server files
  130. App_Data/*.mdf
  131. App_Data/*.ldf
  132. # Business Intelligence projects
  133. *.rdl.data
  134. *.bim.layout
  135. *.bim_*.settings
  136. # Microsoft Fakes
  137. FakesAssemblies/
  138. # =========================
  139. # Windows detritus
  140. # =========================
  141. # Windows image file caches
  142. Thumbs.db
  143. ehthumbs.db
  144. # Folder config file
  145. Desktop.ini
  146. # Recycle Bin used on file shares
  147. $RECYCLE.BIN/