Skip to content

Commit 4347f6f

Browse files
author
Francisco Lopes
committed
Clean Up.
1 parent 53a4c22 commit 4347f6f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+940
-1432
lines changed

.gitignore

+292-26
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,302 @@
1+
# Created by http://www.gitignore.io
2+
3+
### OSX ###
4+
.DS_Store
5+
.AppleDouble
6+
.LSOverride
7+
8+
# Icon must end with two \r
9+
Icon
10+
11+
# Thumbnails
12+
._*
13+
14+
# Files that might appear on external disk
15+
.Spotlight-V100
16+
.Trashes
17+
18+
# Directories potentially created on remote AFP share
19+
.AppleDB
20+
.AppleDesktop
21+
Network Trash Folder
22+
Temporary Items
23+
.apdisk
24+
25+
26+
### Linux ###
27+
*~
28+
29+
# KDE directory preferences
30+
.directory
31+
32+
33+
### Windows ###
34+
# Windows image file caches
135
Thumbs.db
2-
*.obj
3-
*.dll
4-
*.exe
5-
*.sys
6-
*.pdb
7-
*.idb
8-
*.sdf
9-
*.opensdf
36+
ehthumbs.db
37+
38+
# Folder config file
39+
Desktop.ini
40+
41+
# Recycle Bin used on file shares
42+
$RECYCLE.BIN/
43+
44+
# Windows Installer files
45+
*.cab
46+
*.msi
47+
*.msm
48+
*.msp
49+
50+
51+
### VisualStudio ###
52+
## Ignore Visual Studio temporary files, build results, and
53+
## files generated by popular Visual Studio add-ons.
54+
55+
# User-specific files
56+
*.suo
1057
*.user
11-
*.aps
12-
*.pch
13-
*.vspscc
58+
*.sln.docstates
59+
60+
# Build results
61+
[Dd]ebug/
62+
[Dd]ebugPublic/
63+
[Rr]elease/
64+
[Rr]eleases/
65+
x64/
66+
x86/
67+
build/
68+
bld/
69+
[Bb]in/
70+
[Oo]bj/
71+
72+
# Roslyn cache directories
73+
*.ide/
74+
75+
# MSTest test Results
76+
[Tt]est[Rr]esult*/
77+
[Bb]uild[Ll]og.*
78+
79+
#NUNIT
80+
*.VisualState.xml
81+
TestResult.xml
82+
83+
# Build Results of an ATL Project
84+
[Dd]ebugPS/
85+
[Rr]eleasePS/
86+
dlldata.c
87+
1488
*_i.c
1589
*_p.c
16-
*.ncb
17-
*.suo
90+
*_i.h
91+
*.ilk
92+
*.meta
93+
*.obj
94+
*.pch
95+
*.pdb
96+
*.pgc
97+
*.pgd
98+
*.rsp
99+
*.sbr
18100
*.tlb
101+
*.tli
19102
*.tlh
20-
*.bak
21-
*.cache
22-
*.ilk
103+
*.tmp
104+
*.tmp_proj
23105
*.log
24-
*.tlog
25-
*.exp
26-
*.lib
27-
*.sbr
28-
*.res
29-
*.mac
30-
*.pft.xml
106+
*.vspscc
107+
*.vssscc
108+
.builds
109+
*.pidb
110+
*.svclog
111+
*.scc
112+
113+
# Chutzpah Test files
114+
_Chutzpah*
115+
116+
# Visual C++ cache files
31117
ipch/
118+
*.aps
119+
*.ncb
120+
*.opensdf
121+
*.sdf
122+
*.cachefile
123+
124+
# Visual Studio profiler
125+
*.psess
126+
*.vsp
127+
*.vspx
128+
129+
# TFS 2012 Local Workspace
130+
$tf/
131+
132+
# Guidance Automation Toolkit
133+
*.gpState
134+
135+
# ReSharper is a .NET coding add-in
136+
_ReSharper*/
137+
*.[Rr]e[Ss]harper
138+
*.DotSettings.user
139+
140+
# JustCode is a .NET coding addin-in
141+
.JustCode
142+
143+
# TeamCity is a build add-in
144+
_TeamCity*
145+
146+
# DotCover is a Code Coverage Tool
147+
*.dotCover
148+
149+
# NCrunch
150+
_NCrunch_*
151+
.*crunch*.local.xml
152+
153+
# MightyMoose
154+
*.mm.*
155+
AutoTest.Net/
156+
157+
# Web workbench (sass)
158+
.sass-cache/
159+
160+
# Installshield output folder
161+
[Ee]xpress/
162+
163+
# DocProject is a documentation generator add-in
164+
DocProject/buildhelp/
165+
DocProject/Help/*.HxT
166+
DocProject/Help/*.HxC
167+
DocProject/Help/*.hhc
168+
DocProject/Help/*.hhk
169+
DocProject/Help/*.hhp
170+
DocProject/Help/Html2
171+
DocProject/Help/html
172+
173+
# Click-Once directory
174+
publish/
175+
176+
# Publish Web Output
177+
*.[Pp]ublish.xml
178+
*.azurePubxml
179+
# TODO: Comment the next line if you want to checkin your web deploy settings
180+
# but database connection strings (with potential passwords) will be unencrypted
181+
*.pubxml
182+
183+
# NuGet Packages
184+
*.nupkg
185+
# The packages folder can be ignored because of Package Restore
186+
**/packages/*
187+
# except build/, which is used as an MSBuild target.
188+
!**/packages/build/
189+
# If using the old MSBuild-Integrated Package Restore, uncomment this:
190+
#!**/packages/repositories.config
191+
192+
# Windows Azure Build Output
193+
csx/
194+
*.build.csdef
195+
196+
# Windows Store app package directory
197+
AppPackages/
198+
199+
# Others
200+
sql/
201+
*.Cache
202+
ClientBin/
203+
[Ss]tyle[Cc]op.*
204+
~$*
205+
*~
206+
*.dbmdl
207+
*.dbproj.schemaview
208+
*.pfx
209+
*.publishsettings
210+
node_modules/
211+
212+
# RIA/Silverlight projects
213+
Generated_Code/
214+
215+
# Backup & report files from converting an old project file
216+
# to a newer Visual Studio version. Backup files are not needed,
217+
# because we have git ;-)
218+
_UpgradeReport_Files/
219+
Backup*/
220+
UpgradeLog*.XML
221+
UpgradeLog*.htm
222+
223+
# SQL Server files
224+
*.mdf
225+
*.ldf
226+
227+
# Business Intelligence projects
228+
*.rdl.data
229+
*.bim.layout
230+
*.bim_*.settings
231+
232+
# Microsoft Fakes
233+
FakesAssemblies/
234+
235+
236+
### vim ###
237+
[._]*.s[a-w][a-z]
238+
[._]s[a-w][a-z]
239+
*.un~
240+
Session.vim
241+
.netrwhist
242+
*~
243+
244+
245+
### Python ###
246+
# Byte-compiled / optimized / DLL files
247+
__pycache__/
248+
*.py[cod]
249+
250+
# C extensions
251+
*.so
252+
253+
# Distribution / packaging
254+
.Python
255+
env/
256+
build/
257+
develop-eggs/
258+
dist/
259+
eggs/
260+
parts/
261+
sdist/
262+
var/
263+
*.egg-info/
264+
.installed.cfg
265+
*.egg
266+
267+
# PyInstaller
268+
# Usually these files are written by a python script from a template
269+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
270+
*.manifest
271+
*.spec
272+
273+
# Installer logs
274+
pip-log.txt
275+
pip-delete-this-directory.txt
276+
277+
# Unit test / coverage reports
278+
htmlcov/
279+
.tox/
280+
.coverage
281+
.cache
282+
nosetests.xml
283+
coverage.xml
284+
285+
# Translations
286+
*.mo
287+
*.pot
288+
289+
# Django stuff:
290+
*.log
291+
292+
# Sphinx documentation
293+
docs/_build/
294+
295+
# PyBuilder
296+
target/
297+
298+
### WDK ###
299+
*.err
300+
*.wrn
32301
objchk_*/
33302
objfre_*/
34-
[Dd]ebug/
35-
[Rr]elease/
36-
build/

0 commit comments

Comments
 (0)