.gitignore 4.1 KB

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