Skip to content

Commit eb2c6af

Browse files
committed
initial commit
0 parents  commit eb2c6af

14 files changed

+921
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)