.gitignore 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. # Created by https://www.gitignore.io/api/f#,linux,windows,macos,vim,emacs,visualstudio,visualstudiocode
  2. ### F# ###
  3. lib/debug
  4. lib/release
  5. Debug
  6. *.suo
  7. *.user
  8. obj
  9. bin
  10. *.exe
  11. !/.paket/paket.bootstrapper.exe
  12. ### Linux ###
  13. *~
  14. # temporary files which can be created if a process still has a handle open of a deleted file
  15. .fuse_hidden*
  16. # KDE directory preferences
  17. .directory
  18. # Linux trash folder which might appear on any partition or disk
  19. .Trash-*
  20. ### Windows ###
  21. # Windows image file caches
  22. Thumbs.db
  23. ehthumbs.db
  24. # Folder config file
  25. Desktop.ini
  26. # Recycle Bin used on file shares
  27. $RECYCLE.BIN/
  28. # Windows Installer files
  29. *.cab
  30. *.msi
  31. *.msm
  32. *.msp
  33. # Windows shortcuts
  34. *.lnk
  35. ### macOS ###
  36. *.DS_Store
  37. .AppleDouble
  38. .LSOverride
  39. # Icon must end with two \r
  40. Icon
  41. # Thumbnails
  42. ._*
  43. # Files that might appear in the root of a volume
  44. .DocumentRevisions-V100
  45. .fseventsd
  46. .Spotlight-V100
  47. .TemporaryItems
  48. .Trashes
  49. .VolumeIcon.icns
  50. .com.apple.timemachine.donotpresent
  51. # Directories potentially created on remote AFP share
  52. .AppleDB
  53. .AppleDesktop
  54. Network Trash Folder
  55. Temporary Items
  56. .apdisk
  57. ### Vim ###
  58. # swap
  59. [._]*.s[a-w][a-z]
  60. [._]s[a-w][a-z]
  61. # session
  62. Session.vim
  63. # temporary
  64. .netrwhist
  65. *~
  66. # auto-generated tag files
  67. tags
  68. ### Emacs ###
  69. # -*- mode: gitignore; -*-
  70. *~
  71. \#*\#
  72. /.emacs.desktop
  73. /.emacs.desktop.lock
  74. *.elc
  75. auto-save-list
  76. tramp
  77. .\#*
  78. # Org-mode
  79. .org-id-locations
  80. *_archive
  81. # flymake-mode
  82. *_flymake.*
  83. # eshell files
  84. /eshell/history
  85. /eshell/lastdir
  86. # elpa packages
  87. /elpa/
  88. # reftex files
  89. *.rel
  90. # AUCTeX auto folder
  91. /auto/
  92. # cask packages
  93. .cask/
  94. dist/
  95. # Flycheck
  96. flycheck_*.el
  97. # server auth directory
  98. /server/
  99. # projectiles files
  100. .projectile
  101. ### VisualStudioCode ###
  102. # .vscode
  103. ### VisualStudio ###
  104. ## Ignore Visual Studio temporary files, build results, and
  105. ## files generated by popular Visual Studio add-ons.
  106. # User-specific files
  107. *.suo
  108. *.user
  109. *.userosscache
  110. *.sln.docstates
  111. # User-specific files (MonoDevelop/Xamarin Studio)
  112. *.userprefs
  113. # Build results
  114. [Dd]ebug/
  115. [Dd]ebugPublic/
  116. [Rr]elease/
  117. [Rr]eleases/
  118. x64/
  119. x86/
  120. bld/
  121. build/
  122. [Bb]in/
  123. [Oo]bj/
  124. [Ll]og/
  125. # Visual Studio 2015 cache/options directory
  126. .vs/
  127. # Uncomment if you have tasks that create the project's static files in wwwroot
  128. #wwwroot/
  129. # MSTest test Results
  130. [Tt]est[Rr]esult*/
  131. [Bb]uild[Ll]og.*
  132. # NUNIT
  133. *.VisualState.xml
  134. TestResult.xml
  135. # Build Results of an ATL Project
  136. [Dd]ebugPS/
  137. [Rr]eleasePS/
  138. dlldata.c
  139. # DNX
  140. project.lock.json
  141. project.fragment.lock.json
  142. artifacts/
  143. *_i.c
  144. *_p.c
  145. *_i.h
  146. *.ilk
  147. *.meta
  148. *.obj
  149. *.pch
  150. *.pdb
  151. *.pgc
  152. *.pgd
  153. *.rsp
  154. *.sbr
  155. *.tlb
  156. *.tli
  157. *.tlh
  158. *.tmp
  159. *.tmp_proj
  160. *.log
  161. *.vspscc
  162. *.vssscc
  163. .builds
  164. *.pidb
  165. *.svclog
  166. *.scc
  167. # Chutzpah Test files
  168. _Chutzpah*
  169. # Visual C++ cache files
  170. ipch/
  171. *.aps
  172. *.ncb
  173. *.opendb
  174. *.opensdf
  175. *.sdf
  176. *.cachefile
  177. *.VC.db
  178. *.VC.VC.opendb
  179. # Visual Studio profiler
  180. *.psess
  181. *.vsp
  182. *.vspx
  183. *.sap
  184. # TFS 2012 Local Workspace
  185. $tf/
  186. # Guidance Automation Toolkit
  187. *.gpState
  188. # ReSharper is a .NET coding add-in
  189. _ReSharper*/
  190. *.[Rr]e[Ss]harper
  191. *.DotSettings.user
  192. # JustCode is a .NET coding add-in
  193. .JustCode
  194. # TeamCity is a build add-in
  195. _TeamCity*
  196. # DotCover is a Code Coverage Tool
  197. *.dotCover
  198. # NCrunch
  199. _NCrunch_*
  200. .*crunch*.local.xml
  201. nCrunchTemp_*
  202. # MightyMoose
  203. *.mm.*
  204. AutoTest.Net/
  205. # Web workbench (sass)
  206. .sass-cache/
  207. # Installshield output folder
  208. [Ee]xpress/
  209. # DocProject is a documentation generator add-in
  210. DocProject/buildhelp/
  211. DocProject/Help/*.HxT
  212. DocProject/Help/*.HxC
  213. DocProject/Help/*.hhc
  214. DocProject/Help/*.hhk
  215. DocProject/Help/*.hhp
  216. DocProject/Help/Html2
  217. DocProject/Help/html
  218. # Click-Once directory
  219. publish/
  220. # Publish Web Output
  221. *.[Pp]ublish.xml
  222. *.azurePubxml
  223. # TODO: Comment the next line if you want to checkin your web deploy settings
  224. # but database connection strings (with potential passwords) will be unencrypted
  225. *.pubxml
  226. *.publishproj
  227. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  228. # checkin your Azure Web App publish settings, but sensitive information contained
  229. # in these scripts will be unencrypted
  230. PublishScripts/
  231. # NuGet Packages
  232. *.nupkg
  233. # The packages folder can be ignored because of Package Restore
  234. **/packages/*
  235. # Uncomment if necessary however generally it will be regenerated when needed
  236. #!**/packages/repositories.config
  237. # NuGet v3's project.json files produces more ignoreable files
  238. *.nuget.props
  239. *.nuget.targets
  240. # Microsoft Azure Build Output
  241. csx/
  242. *.build.csdef
  243. # Microsoft Azure Emulator
  244. ecf/
  245. rcf/
  246. # Windows Store app package directories and files
  247. AppPackages/
  248. BundleArtifacts/
  249. Package.StoreAssociation.xml
  250. _pkginfo.txt
  251. # Visual Studio cache files
  252. # files ending in .cache can be ignored
  253. *.[Cc]ache
  254. # but keep track of directories ending in .cache
  255. !*.[Cc]ache/
  256. # Others
  257. ClientBin/
  258. ~$*
  259. *~
  260. *.dbmdl
  261. *.dbproj.schemaview
  262. *.pfx
  263. *.publishsettings
  264. node_modules/
  265. orleans.codegen.cs
  266. # Since there are multiple workflows, uncomment next line to ignore bower_components
  267. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  268. #bower_components/
  269. # RIA/Silverlight projects
  270. Generated_Code/
  271. # Backup & report files from converting an old project file
  272. # to a newer Visual Studio version. Backup files are not needed,
  273. # because we have git ;-)
  274. _UpgradeReport_Files/
  275. Backup*/
  276. UpgradeLog*.XML
  277. UpgradeLog*.htm
  278. # SQL Server files
  279. *.mdf
  280. *.ldf
  281. # Business Intelligence projects
  282. *.rdl.data
  283. *.bim.layout
  284. *.bim_*.settings
  285. # Microsoft Fakes
  286. FakesAssemblies/
  287. # GhostDoc plugin setting file
  288. *.GhostDoc.xml
  289. # Node.js Tools for Visual Studio
  290. .ntvs_analysis.dat
  291. # Visual Studio 6 build log
  292. *.plg
  293. # Visual Studio 6 workspace options file
  294. *.opt
  295. # Visual Studio LightSwitch build output
  296. **/*.HTMLClient/GeneratedArtifacts
  297. **/*.DesktopClient/GeneratedArtifacts
  298. **/*.DesktopClient/ModelManifest.xml
  299. **/*.Server/GeneratedArtifacts
  300. **/*.Server/ModelManifest.xml
  301. _Pvt_Extensions
  302. # Paket dependency manager
  303. .paket/paket.exe
  304. paket-files/
  305. # FAKE - F# Make
  306. .fake/
  307. # JetBrains Rider
  308. .idea/
  309. *.sln.iml
  310. /Output/
  311. /.ionide/
  312. /Utils/
  313. /Test/Mocks/