VisualStudio 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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 Store app package directory
  131. AppPackages/
  132. # Visual Studio cache files
  133. # files ending in .cache can be ignored
  134. *.[Cc]ache
  135. # but keep track of directories ending in .cache
  136. !*.[Cc]ache/
  137. # Others
  138. ClientBin/
  139. [Ss]tyle[Cc]op.*
  140. ~$*
  141. *~
  142. *.dbmdl
  143. *.dbproj.schemaview
  144. *.pfx
  145. *.publishsettings
  146. node_modules/
  147. orleans.codegen.cs
  148. # RIA/Silverlight projects
  149. Generated_Code/
  150. # Backup & report files from converting an old project file
  151. # to a newer Visual Studio version. Backup files are not needed,
  152. # because we have git ;-)
  153. _UpgradeReport_Files/
  154. Backup*/
  155. UpgradeLog*.XML
  156. UpgradeLog*.htm
  157. # SQL Server files
  158. *.mdf
  159. *.ldf
  160. # Business Intelligence projects
  161. *.rdl.data
  162. *.bim.layout
  163. *.bim_*.settings
  164. # Microsoft Fakes
  165. FakesAssemblies/
  166. # Node.js Tools for Visual Studio
  167. .ntvs_analysis.dat
  168. # Visual Studio 6 build log
  169. *.plg
  170. # Visual Studio 6 workspace options file
  171. *.opt
  172. # Visual Studio LightSwitch build output
  173. **/*.HTMLClient/GeneratedArtifacts
  174. **/*.DesktopClient/GeneratedArtifacts
  175. **/*.DesktopClient/ModelManifest.xml
  176. **/*.Server/GeneratedArtifacts
  177. **/*.Server/ModelManifest.xml
  178. _Pvt_Extensions