.gitignore 5.8 KB

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