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.

186 lines
2.6 KiB

1 year ago
  1. # Ref: https://gist.github.com/kmorcinek/2710267
  2. # Download this file using PowerShell v3 under Windows with the following comand
  3. # Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
  4. # User-specific files
  5. *.suo
  6. *.user
  7. *.sln.docstates
  8. ./nuget
  9. # Build results
  10. [Dd]ebug/
  11. [Rr]elease/
  12. x64/
  13. build/
  14. [Bb]in/
  15. [Oo]bj/
  16. # NuGet Packages
  17. *.nupkg
  18. # The packages folder can be ignored because of Package Restore
  19. **/packages/*
  20. # except build/, which is used as an MSBuild target.
  21. !**/packages/build/
  22. # Uncomment if necessary however generally it will be regenerated when needed
  23. #!**/packages/repositories.config
  24. # MSTest test Results
  25. [Tt]est[Rr]esult*/
  26. [Bb]uild[Ll]og.*
  27. *_i.c
  28. *_p.c
  29. *.ilk
  30. *.meta
  31. *.obj
  32. *.pch
  33. *.pdb
  34. *.pgc
  35. *.pgd
  36. *.rsp
  37. *.sbr
  38. *.tlb
  39. *.tli
  40. *.tlh
  41. *.tmp
  42. *.tmp_proj
  43. *.log
  44. *.vspscc
  45. *.vssscc
  46. .builds
  47. *.pidb
  48. *.log
  49. *.scc
  50. # OS generated files #
  51. .DS_Store*
  52. ehthumbs.db
  53. Icon?
  54. Thumbs.db
  55. # Visual C++ cache files
  56. ipch/
  57. *.aps
  58. *.ncb
  59. *.opensdf
  60. *.sdf
  61. *.cachefile
  62. # Visual Studio profiler
  63. *.psess
  64. *.vsp
  65. *.vspx
  66. # Guidance Automation Toolkit
  67. *.gpState
  68. # ReSharper is a .NET coding add-in
  69. _ReSharper*/
  70. *.[Rr]e[Ss]harper
  71. # TeamCity is a build add-in
  72. _TeamCity*
  73. # DotCover is a Code Coverage Tool
  74. *.dotCover
  75. # NCrunch
  76. *.ncrunch*
  77. .*crunch*.local.xml
  78. # Installshield output folder
  79. [Ee]xpress/
  80. # DocProject is a documentation generator add-in
  81. DocProject/buildhelp/
  82. DocProject/Help/*.HxT
  83. DocProject/Help/*.HxC
  84. DocProject/Help/*.hhc
  85. DocProject/Help/*.hhk
  86. DocProject/Help/*.hhp
  87. DocProject/Help/Html2
  88. DocProject/Help/html
  89. # Click-Once directory
  90. publish/
  91. # Publish Web Output
  92. *.Publish.xml
  93. # Windows Azure Build Output
  94. csx
  95. *.build.csdef
  96. # Windows Store app package directory
  97. AppPackages/
  98. # Others
  99. sql/
  100. *.Cache
  101. ClientBin/
  102. [Ss]tyle[Cc]op.*
  103. ~$*
  104. *~
  105. *.dbmdl
  106. *.[Pp]ublish.xml
  107. *.pfx
  108. *.publishsettings
  109. modulesbin/
  110. tempbin/
  111. # EPiServer Site file (VPP)
  112. AppData/
  113. # RIA/Silverlight projects
  114. Generated_Code/
  115. # Backup & report files from converting an old project file to a newer
  116. # Visual Studio version. Backup files are not needed, because we have git ;-)
  117. _UpgradeReport_Files/
  118. Backup*/
  119. UpgradeLog*.XML
  120. UpgradeLog*.htm
  121. # vim
  122. *.txt~
  123. *.swp
  124. *.swo
  125. # svn
  126. .svn
  127. # SQL Server files
  128. **/App_Data/*.mdf
  129. **/App_Data/*.ldf
  130. **/App_Data/*.sdf
  131. #LightSwitch generated files
  132. GeneratedArtifacts/
  133. _Pvt_Extensions/
  134. ModelManifest.xml
  135. # =========================
  136. # Windows detritus
  137. # =========================
  138. # Windows image file caches
  139. Thumbs.db
  140. ehthumbs.db
  141. # Folder config file
  142. Desktop.ini
  143. # Recycle Bin used on file shares
  144. $RECYCLE.BIN/
  145. # Mac desktop service store files
  146. .DS_Store
  147. # SASS Compiler cache
  148. .sass-cache
  149. # Visual Studio 2014 CTP
  150. **/*.sln.ide