Skip to content

Commit 67b03ec

Browse files
committed
gitignore and empty readme.md added
1 parent b6e491c commit 67b03ec

File tree

2 files changed

+180
-0
lines changed

2 files changed

+180
-0
lines changed

.gitignore

+180
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.sln.docstates
8+
9+
# Build results
10+
[Dd]ebug/
11+
[Dd]ebugPublic/
12+
[Rr]elease/
13+
x64/
14+
build/
15+
bld/
16+
[Bb]in/
17+
[Oo]bj/
18+
19+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
20+
!packages/*/build/
21+
22+
# MSTest test Results
23+
[Tt]est[Rr]esult*/
24+
[Bb]uild[Ll]og.*
25+
26+
#NUNIT
27+
*.VisualState.xml
28+
TestResult.xml
29+
30+
*_i.c
31+
*_p.c
32+
*_i.h
33+
*.ilk
34+
*.meta
35+
*.obj
36+
*.pch
37+
*.pdb
38+
*.pgc
39+
*.pgd
40+
*.rsp
41+
*.sbr
42+
*.tlb
43+
*.tli
44+
*.tlh
45+
*.tmp
46+
*.tmp_proj
47+
*.log
48+
*.vspscc
49+
*.vssscc
50+
.builds
51+
*.pidb
52+
*.svclog
53+
*.scc
54+
55+
# Chutzpah Test files
56+
_Chutzpah*
57+
58+
# Visual C++ cache files
59+
ipch/
60+
*.aps
61+
*.ncb
62+
*.opensdf
63+
*.sdf
64+
*.cachefile
65+
66+
# Visual Studio profiler
67+
*.psess
68+
*.vsp
69+
*.vspx
70+
71+
# TFS 2012 Local Workspace
72+
$tf/
73+
74+
# Guidance Automation Toolkit
75+
*.gpState
76+
77+
# ReSharper is a .NET coding add-in
78+
_ReSharper*/
79+
*.[Rr]e[Ss]harper
80+
*.DotSettings.user
81+
82+
# JustCode is a .NET coding addin-in
83+
.JustCode
84+
85+
# TeamCity is a build add-in
86+
_TeamCity*
87+
88+
# DotCover is a Code Coverage Tool
89+
*.dotCover
90+
91+
# NCrunch
92+
*.ncrunch*
93+
_NCrunch_*
94+
.*crunch*.local.xml
95+
96+
# MightyMoose
97+
*.mm.*
98+
AutoTest.Net/
99+
100+
# Installshield output folder
101+
[Ee]xpress/
102+
103+
# DocProject is a documentation generator add-in
104+
DocProject/buildhelp/
105+
DocProject/Help/*.HxT
106+
DocProject/Help/*.HxC
107+
DocProject/Help/*.hhc
108+
DocProject/Help/*.hhk
109+
DocProject/Help/*.hhp
110+
DocProject/Help/Html2
111+
DocProject/Help/html
112+
113+
# Click-Once directory
114+
publish/
115+
116+
# Publish Web Output
117+
*.Publish.xml
118+
*.azurePubxml
119+
120+
# NuGet Packages Directory
121+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
122+
#packages/
123+
## TODO: If the tool you use requires repositories.config, also uncomment the next line
124+
#!packages/repositories.config
125+
126+
# Windows Azure Build Output
127+
csx/
128+
*.build.csdef
129+
130+
# Windows Store app package directory
131+
AppPackages/
132+
133+
# Others
134+
sql/
135+
*.Cache
136+
ClientBin/
137+
[Ss]tyle[Cc]op.*
138+
~$*
139+
*~
140+
*.dbmdl
141+
*.dbproj.schemaview
142+
*.[Pp]ublish.xml
143+
*.pfx
144+
*.publishsettings
145+
146+
# RIA/Silverlight projects
147+
Generated_Code/
148+
149+
# Backup & report files from converting an old project file to a newer
150+
# Visual Studio version. Backup files are not needed, because we have git ;-)
151+
_UpgradeReport_Files/
152+
Backup*/
153+
UpgradeLog*.XML
154+
UpgradeLog*.htm
155+
156+
# SQL Server files
157+
App_Data/*.mdf
158+
App_Data/*.ldf
159+
160+
# Business Intelligence projects
161+
*.rdl.data
162+
*.bim.layout
163+
*.bim_*.settings
164+
165+
# Microsoft Fakes
166+
FakesAssemblies/
167+
168+
# =========================
169+
# Windows detritus
170+
# =========================
171+
172+
# Windows image file caches
173+
Thumbs.db
174+
ehthumbs.db
175+
176+
# Folder config file
177+
Desktop.ini
178+
179+
# Recycle Bin used on file shares
180+
$RECYCLE.BIN/

readme.md

Whitespace-only changes.

0 commit comments

Comments
 (0)