Skip to content

Commit 2514ab0

Browse files
committed
initial commit
0 parents  commit 2514ab0

File tree

2 files changed

+187
-0
lines changed

2 files changed

+187
-0
lines changed

.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

+165
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
2+
#################
3+
## Eclipse
4+
#################
5+
6+
*.pydevproject
7+
.project
8+
.metadata
9+
bin/**
10+
tmp/**
11+
tmp/**/*
12+
*.tmp
13+
*.bak
14+
*.swp
15+
*~.nib
16+
local.properties
17+
.classpath
18+
.settings/
19+
.loadpath
20+
21+
# External tool builders
22+
.externalToolBuilders/
23+
24+
# Locally stored "Eclipse launch configurations"
25+
*.launch
26+
27+
# CDT-specific
28+
.cproject
29+
30+
# PDT-specific
31+
.buildpath
32+
33+
34+
#################
35+
## Visual Studio
36+
#################
37+
38+
## Ignore Visual Studio temporary files, build results, and
39+
## files generated by popular Visual Studio add-ons.
40+
41+
# User-specific files
42+
*.suo
43+
*.user
44+
*.sln.docstates
45+
46+
# Build results
47+
**/[Dd]ebug/
48+
**/[Rr]elease/
49+
*_i.c
50+
*_p.c
51+
*.ilk
52+
*.meta
53+
*.obj
54+
*.pch
55+
*.pdb
56+
*.pgc
57+
*.pgd
58+
*.rsp
59+
*.sbr
60+
*.tlb
61+
*.tli
62+
*.tlh
63+
*.tmp
64+
*.vspscc
65+
.builds
66+
**/*.dotCover
67+
68+
## TODO: If you have NuGet Package Restore enabled, uncomment this
69+
#**/packages/
70+
71+
# Visual C++ cache files
72+
ipch/
73+
*.aps
74+
*.ncb
75+
*.opensdf
76+
*.sdf
77+
78+
# Visual Studio profiler
79+
*.psess
80+
*.vsp
81+
82+
# ReSharper is a .NET coding add-in
83+
_ReSharper*
84+
85+
# Installshield output folder
86+
[Ee]xpress
87+
88+
# DocProject is a documentation generator add-in
89+
DocProject/buildhelp/
90+
DocProject/Help/*.HxT
91+
DocProject/Help/*.HxC
92+
DocProject/Help/*.hhc
93+
DocProject/Help/*.hhk
94+
DocProject/Help/*.hhp
95+
DocProject/Help/Html2
96+
DocProject/Help/html
97+
98+
# Click-Once directory
99+
publish
100+
101+
# Others
102+
[Bb]in
103+
[Oo]bj
104+
sql
105+
TestResults
106+
*.Cache
107+
ClientBin
108+
stylecop.*
109+
~$*
110+
*.dbmdl
111+
Generated_Code #added for RIA/Silverlight projects
112+
113+
# Backup & report files from converting an old project file to a newer
114+
# Visual Studio version. Backup files are not needed, because we have git ;-)
115+
_UpgradeReport_Files/
116+
Backup*/
117+
UpgradeLog*.XML
118+
119+
120+
121+
############
122+
## Windows
123+
############
124+
125+
# Windows image file caches
126+
Thumbs.db
127+
128+
# Folder config file
129+
Desktop.ini
130+
131+
132+
#############
133+
## Python
134+
#############
135+
136+
*.py[co]
137+
138+
# Packages
139+
*.egg
140+
*.egg-info
141+
dist
142+
build
143+
eggs
144+
parts
145+
bin
146+
var
147+
sdist
148+
develop-eggs
149+
.installed.cfg
150+
151+
# Installer logs
152+
pip-log.txt
153+
154+
# Unit test / coverage reports
155+
.coverage
156+
.tox
157+
158+
#Translations
159+
*.mo
160+
161+
#Mr Developer
162+
.mr.developer.cfg
163+
164+
# Mac crap
165+
.DS_Store

0 commit comments

Comments
 (0)