You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VisualStudio.gitignore 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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. *.userosscache
  7. *.sln.docstates
  8. # User-specific files (MonoDevelop/Xamarin Studio)
  9. *.userprefs
  10. # Build results
  11. [Dd]ebug/
  12. [Dd]ebugPublic/
  13. [Rr]elease/
  14. [Rr]eleases/
  15. x64/
  16. x86/
  17. build/
  18. bld/
  19. [Bb]in/
  20. [Oo]bj/
  21. # Visual Studio 2015 cache/options directory
  22. .vs/
  23. # Uncomment if you have tasks that create the project's static files in wwwroot
  24. #wwwroot/
  25. # MSTest test Results
  26. [Tt]est[Rr]esult*/
  27. [Bb]uild[Ll]og.*
  28. # NUNIT
  29. *.VisualState.xml
  30. TestResult.xml
  31. # Build Results of an ATL Project
  32. [Dd]ebugPS/
  33. [Rr]eleasePS/
  34. dlldata.c
  35. # DNX
  36. project.lock.json
  37. artifacts/
  38. *_i.c
  39. *_p.c
  40. *_i.h
  41. *.ilk
  42. *.meta
  43. *.obj
  44. *.pch
  45. *.pdb
  46. *.pgc
  47. *.pgd
  48. *.rsp
  49. *.sbr
  50. *.tlb
  51. *.tli
  52. *.tlh
  53. *.tmp
  54. *.tmp_proj
  55. *.log
  56. *.vspscc
  57. *.vssscc
  58. .builds
  59. *.pidb
  60. *.svclog
  61. *.scc
  62. # Chutzpah Test files
  63. _Chutzpah*
  64. # Visual C++ cache files
  65. ipch/
  66. *.aps
  67. *.ncb
  68. *.opensdf
  69. *.sdf
  70. *.cachefile
  71. # Visual Studio profiler
  72. *.psess
  73. *.vsp
  74. *.vspx
  75. *.sap
  76. # TFS 2012 Local Workspace
  77. $tf/
  78. # Guidance Automation Toolkit
  79. *.gpState
  80. # ReSharper is a .NET coding add-in
  81. _ReSharper*/
  82. *.[Rr]e[Ss]harper
  83. *.DotSettings.user
  84. # JustCode is a .NET coding add-in
  85. .JustCode
  86. # TeamCity is a build add-in
  87. _TeamCity*
  88. # DotCover is a Code Coverage Tool
  89. *.dotCover
  90. # NCrunch
  91. _NCrunch_*
  92. .*crunch*.local.xml
  93. nCrunchTemp_*
  94. # MightyMoose
  95. *.mm.*
  96. AutoTest.Net/
  97. # Web workbench (sass)
  98. .sass-cache/
  99. # Installshield output folder
  100. [Ee]xpress/
  101. # DocProject is a documentation generator add-in
  102. DocProject/buildhelp/
  103. DocProject/Help/*.HxT
  104. DocProject/Help/*.HxC
  105. DocProject/Help/*.hhc
  106. DocProject/Help/*.hhk
  107. DocProject/Help/*.hhp
  108. DocProject/Help/Html2
  109. DocProject/Help/html
  110. # Click-Once directory
  111. publish/
  112. # Publish Web Output
  113. *.[Pp]ublish.xml
  114. *.azurePubxml
  115. # TODO: Comment the next line if you want to checkin your web deploy settings
  116. # but database connection strings (with potential passwords) will be unencrypted
  117. *.pubxml
  118. *.publishproj
  119. # NuGet Packages
  120. *.nupkg
  121. # The packages folder can be ignored because of Package Restore
  122. **/packages/*
  123. # except build/, which is used as an MSBuild target.
  124. !**/packages/build/
  125. # Uncomment if necessary however generally it will be regenerated when needed
  126. #!**/packages/repositories.config
  127. # Windows Azure Build Output
  128. csx/
  129. *.build.csdef
  130. # Windows Azure Emulator
  131. efc/
  132. rfc/
  133. # Windows Store app package directory
  134. AppPackages/
  135. # Visual Studio cache files
  136. # files ending in .cache can be ignored
  137. *.[Cc]ache
  138. # but keep track of directories ending in .cache
  139. !*.[Cc]ache/
  140. # Others
  141. ClientBin/
  142. [Ss]tyle[Cc]op.*
  143. ~$*
  144. *~
  145. *.dbmdl
  146. *.dbproj.schemaview
  147. *.pfx
  148. *.publishsettings
  149. node_modules/
  150. orleans.codegen.cs
  151. # RIA/Silverlight projects
  152. Generated_Code/
  153. # Backup & report files from converting an old project file
  154. # to a newer Visual Studio version. Backup files are not needed,
  155. # because we have git ;-)
  156. _UpgradeReport_Files/
  157. Backup*/
  158. UpgradeLog*.XML
  159. UpgradeLog*.htm
  160. # SQL Server files
  161. *.mdf
  162. *.ldf
  163. # Business Intelligence projects
  164. *.rdl.data
  165. *.bim.layout
  166. *.bim_*.settings
  167. # Microsoft Fakes
  168. FakesAssemblies/
  169. # GhostDoc plugin setting file
  170. *.GhostDoc.xml
  171. # Node.js Tools for Visual Studio
  172. .ntvs_analysis.dat
  173. # Visual Studio 6 build log
  174. *.plg
  175. # Visual Studio 6 workspace options file
  176. *.opt
  177. # Visual Studio LightSwitch build output
  178. **/*.HTMLClient/GeneratedArtifacts
  179. **/*.DesktopClient/GeneratedArtifacts
  180. **/*.DesktopClient/ModelManifest.xml
  181. **/*.Server/GeneratedArtifacts
  182. **/*.Server/ModelManifest.xml
  183. _Pvt_Extensions
  184. # Paket dependency manager
  185. .paket/paket.exe
  186. # FAKE - F# Make
  187. .fake/