Advertisement
Guest User

Gitignore VS

a guest
Oct 31st, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. # Created by http://www.gitignore.io
  2.  
  3. ### VisualStudio ###
  4. ## Ignore Visual Studio temporary files, build results, and
  5. ## files generated by popular Visual Studio add-ons.
  6.  
  7. # User-specific files
  8. *.suo
  9. *.user
  10. *.sln.docstates
  11.  
  12. # Build results
  13. [Dd]ebug/
  14. [Dd]ebugPublic/
  15. [Rr]elease/
  16. [Rr]eleases/
  17. x64/
  18. x86/
  19. build/
  20. bld/
  21. [Bb]in/
  22. [Oo]bj/
  23.  
  24. # Roslyn cache directories
  25. *.ide/
  26.  
  27. # MSTest test Results
  28. [Tt]est[Rr]esult*/
  29. [Bb]uild[Ll]og.*
  30.  
  31. #NUNIT
  32. *.VisualState.xml
  33. TestResult.xml
  34.  
  35. # Build Results of an ATL Project
  36. [Dd]ebugPS/
  37. [Rr]eleasePS/
  38. dlldata.c
  39.  
  40. *_i.c
  41. *_p.c
  42. *_i.h
  43. *.ilk
  44. *.meta
  45. *.obj
  46. *.pch
  47. *.pdb
  48. *.pgc
  49. *.pgd
  50. *.rsp
  51. *.sbr
  52. *.tlb
  53. *.tli
  54. *.tlh
  55. *.tmp
  56. *.tmp_proj
  57. *.log
  58. *.vspscc
  59. *.vssscc
  60. .builds
  61. *.pidb
  62. *.svclog
  63. *.scc
  64.  
  65. # Chutzpah Test files
  66. _Chutzpah*
  67.  
  68. # Visual C++ cache files
  69. ipch/
  70. *.aps
  71. *.ncb
  72. *.opensdf
  73. *.sdf
  74. *.cachefile
  75.  
  76. # Visual Studio profiler
  77. *.psess
  78. *.vsp
  79. *.vspx
  80.  
  81. # TFS 2012 Local Workspace
  82. $tf/
  83.  
  84. # Guidance Automation Toolkit
  85. *.gpState
  86.  
  87. # ReSharper is a .NET coding add-in
  88. _ReSharper*/
  89. *.[Rr]e[Ss]harper
  90. *.DotSettings.user
  91.  
  92. # JustCode is a .NET coding addin-in
  93. .JustCode
  94.  
  95. # TeamCity is a build add-in
  96. _TeamCity*
  97.  
  98. # DotCover is a Code Coverage Tool
  99. *.dotCover
  100.  
  101. # NCrunch
  102. _NCrunch_*
  103. .*crunch*.local.xml
  104.  
  105. # MightyMoose
  106. *.mm.*
  107. AutoTest.Net/
  108.  
  109. # Web workbench (sass)
  110. .sass-cache/
  111.  
  112. # Installshield output folder
  113. [Ee]xpress/
  114.  
  115. # DocProject is a documentation generator add-in
  116. DocProject/buildhelp/
  117. DocProject/Help/*.HxT
  118. DocProject/Help/*.HxC
  119. DocProject/Help/*.hhc
  120. DocProject/Help/*.hhk
  121. DocProject/Help/*.hhp
  122. DocProject/Help/Html2
  123. DocProject/Help/html
  124.  
  125. # Click-Once directory
  126. publish/
  127.  
  128. # Publish Web Output
  129. *.[Pp]ublish.xml
  130. *.azurePubxml
  131. # TODO: Comment the next line if you want to checkin your web deploy settings
  132. # but database connection strings (with potential passwords) will be unencrypted
  133. *.pubxml
  134. *.publishproj
  135.  
  136. # NuGet Packages
  137. *.nupkg
  138. # The packages folder can be ignored because of Package Restore
  139. **/packages/*
  140. # except build/, which is used as an MSBuild target.
  141. !**/packages/build/
  142. # If using the old MSBuild-Integrated Package Restore, uncomment this:
  143. #!**/packages/repositories.config
  144.  
  145. # Windows Azure Build Output
  146. csx/
  147. *.build.csdef
  148.  
  149. # Windows Store app package directory
  150. AppPackages/
  151.  
  152. # Others
  153. sql/
  154. *.Cache
  155. ClientBin/
  156. [Ss]tyle[Cc]op.*
  157. ~$*
  158. *~
  159. *.dbmdl
  160. *.dbproj.schemaview
  161. *.pfx
  162. *.publishsettings
  163. node_modules/
  164.  
  165. # RIA/Silverlight projects
  166. Generated_Code/
  167.  
  168. # Backup & report files from converting an old project file
  169. # to a newer Visual Studio version. Backup files are not needed,
  170. # because we have git ;-)
  171. _UpgradeReport_Files/
  172. Backup*/
  173. UpgradeLog*.XML
  174. UpgradeLog*.htm
  175.  
  176. # SQL Server files
  177. *.mdf
  178. *.ldf
  179.  
  180. # Business Intelligence projects
  181. *.rdl.data
  182. *.bim.layout
  183. *.bim_*.settings
  184.  
  185. # Microsoft Fakes
  186. FakesAssemblies/
  187.  
  188.  
  189. ### Windows ###
  190. # Windows image file caches
  191. Thumbs.db
  192. ehthumbs.db
  193.  
  194. # Folder config file
  195. Desktop.ini
  196.  
  197. # Recycle Bin used on file shares
  198. $RECYCLE.BIN/
  199.  
  200. # Windows Installer files
  201. *.cab
  202. *.msi
  203. *.msm
  204. *.msp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement