.gitignore 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. # The following command works for downloading when using Git for Windows:
  2. # curl -LOf http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
  3. #
  4. # Download this file using PowerShell v3 under Windows with the following comand:
  5. # Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
  6. #
  7. # or wget:
  8. # wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
  9. # User-specific files
  10. *.suo
  11. *.user
  12. *.sln.docstates
  13. # Build results
  14. [Dd]ebug/
  15. [Rr]elease/
  16. x64/
  17. [Bb]in/
  18. [Oo]bj/
  19. # build folder is nowadays used for build scripts and should not be ignored
  20. #build/
  21. # NuGet Packages
  22. *.nupkg
  23. # The packages folder can be ignored because of Package Restore
  24. **/packages/*
  25. # except build/, which is used as an MSBuild target.
  26. !**/packages/build/
  27. # Uncomment if necessary however generally it will be regenerated when needed
  28. #!**/packages/repositories.config
  29. # MSTest test Results
  30. [Tt]est[Rr]esult*/
  31. [Bb]uild[Ll]og.*
  32. *_i.c
  33. *_p.c
  34. *.ilk
  35. *.meta
  36. *.obj
  37. *.pch
  38. *.pdb
  39. *.pgc
  40. *.pgd
  41. *.rsp
  42. *.sbr
  43. *.tlb
  44. *.tli
  45. *.tlh
  46. *.tmp
  47. *.tmp_proj
  48. *.log
  49. *.vspscc
  50. *.vssscc
  51. .builds
  52. *.pidb
  53. *.scc
  54. # Visual C++ cache files
  55. ipch/
  56. *.aps
  57. *.ncb
  58. *.opensdf
  59. *.sdf
  60. *.cachefile
  61. # Visual Studio profiler
  62. *.psess
  63. *.vsp
  64. *.vspx
  65. # Guidance Automation Toolkit
  66. *.gpState
  67. # ReSharper is a .NET coding add-in
  68. _ReSharper*/
  69. *.[Rr]e[Ss]harper
  70. # TeamCity is a build add-in
  71. _TeamCity*
  72. # DotCover is a Code Coverage Tool
  73. *.dotCover
  74. # NCrunch
  75. *.ncrunch*
  76. .*crunch*.local.xml
  77. # Installshield output folder
  78. [Ee]xpress/
  79. # DocProject is a documentation generator add-in
  80. DocProject/buildhelp/
  81. DocProject/Help/*.HxT
  82. DocProject/Help/*.HxC
  83. DocProject/Help/*.hhc
  84. DocProject/Help/*.hhk
  85. DocProject/Help/*.hhp
  86. DocProject/Help/Html2
  87. DocProject/Help/html
  88. # Click-Once directory
  89. publish/
  90. # Publish Web Output
  91. *.Publish.xml
  92. # Windows Azure Build Output
  93. csx
  94. *.build.csdef
  95. # Windows Store app package directory
  96. AppPackages/
  97. # Others
  98. *.Cache
  99. ClientBin/
  100. [Ss]tyle[Cc]op.*
  101. ~$*
  102. *~
  103. *.dbmdl
  104. *.[Pp]ublish.xml
  105. *.pfx
  106. *.publishsettings
  107. modulesbin/
  108. tempbin/
  109. # EPiServer Site file (VPP)
  110. AppData/
  111. # RIA/Silverlight projects
  112. Generated_Code/
  113. # Backup & report files from converting an old project file to a newer
  114. # Visual Studio version. Backup files are not needed, because we have git ;-)
  115. _UpgradeReport_Files/
  116. Backup*/
  117. UpgradeLog*.XML
  118. UpgradeLog*.htm
  119. # vim
  120. *.txt~
  121. *.swp
  122. *.swo
  123. # Temp files when opening LibreOffice on ubuntu
  124. .~lock.*
  125. # svn
  126. .svn
  127. # CVS - Source Control
  128. **/CVS/
  129. # Remainings from resolving conflicts in Source Control
  130. *.orig
  131. # SQL Server files
  132. **/App_Data/*.mdf
  133. **/App_Data/*.ldf
  134. **/App_Data/*.sdf
  135. #LightSwitch generated files
  136. GeneratedArtifacts/
  137. _Pvt_Extensions/
  138. ModelManifest.xml
  139. # =========================
  140. # Windows detritus
  141. # =========================
  142. # Windows image file caches
  143. Thumbs.db
  144. ehthumbs.db
  145. # Folder config file
  146. Desktop.ini
  147. # Recycle Bin used on file shares
  148. $RECYCLE.BIN/
  149. # OS generated files #
  150. Icon?
  151. # Mac desktop service store files
  152. .DS_Store
  153. # SASS Compiler cache
  154. .sass-cache
  155. # Visual Studio 2014 CTP
  156. **/*.sln.ide
  157. # Visual Studio temp something
  158. .vs/
  159. # dotnet stuff
  160. project.lock.json
  161. # VS 2015+
  162. *.vc.vc.opendb
  163. *.vc.db
  164. # Rider
  165. .idea/
  166. # Visual Studio Code
  167. .vscode/
  168. # Output folder used by Webpack or other FE stuff
  169. **/node_modules/*
  170. # SpecFlow specific
  171. *.feature.cs
  172. *.feature.xlsx.*
  173. *.Specs_*.html
  174. # UWP Projects
  175. AppPackages/
  176. #####
  177. # End of core ignore list, below put you custom 'per project' settings (patterns or path)
  178. #####
  179. bin/
  180. obj/
  181. /packages/
  182. riderModule.iml
  183. /_ReSharper.Caches/