Advertisement
Januschan

.gitignore

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