Skip to content

Commit 0d5e578

Browse files
committed
gitignore
1 parent ec76d65 commit 0d5e578

File tree

1 file changed

+212
-0
lines changed

1 file changed

+212
-0
lines changed

.gitignore

+212
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
#################
2+
## Visual Studio
3+
#################
4+
5+
## Ignore Visual Studio temporary files, build results, and
6+
## files generated by popular Visual Studio add-ons.
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.sln.docstates
12+
.vs/
13+
14+
# Build results
15+
16+
*.sln.ide/
17+
[Dd]ebug/
18+
[Rr]elease/
19+
x64/
20+
[Bb]in/
21+
[Oo]bj/
22+
23+
# MSTest test Results
24+
[Tt]est[Rr]esult*/
25+
[Bb]uild[Ll]og.*
26+
27+
*_i.c
28+
*_p.c
29+
*.ilk
30+
*.meta
31+
*.obj
32+
*.pch
33+
*.pdb
34+
*.pgc
35+
*.pgd
36+
*.rsp
37+
*.sbr
38+
*.tlb
39+
*.tli
40+
*.tlh
41+
*.tmp
42+
*.tmp_proj
43+
*.log
44+
*.vspscc
45+
*.vssscc
46+
.builds
47+
*.pidb
48+
*.log
49+
*.scc
50+
51+
# Visual C++ cache files
52+
ipch/
53+
*.aps
54+
*.ncb
55+
*.opensdf
56+
*.sdf
57+
*.cachefile
58+
59+
# Visual Studio profiler
60+
*.psess
61+
*.vsp
62+
*.vspx
63+
64+
# Guidance Automation Toolkit
65+
*.gpState
66+
67+
# ReSharper is a .NET coding add-in
68+
_ReSharper*/
69+
*.[Rr]e[Ss]harper
70+
71+
# TeamCity is a build add-in
72+
_TeamCity*
73+
74+
# DotCover is a Code Coverage Tool
75+
*.dotCover
76+
77+
# Installshield output folder
78+
[Ee]xpress/
79+
80+
# DocProject is a documentation generator add-in
81+
DocProject/buildhelp/
82+
DocProject/Help/*.HxT
83+
DocProject/Help/*.HxC
84+
DocProject/Help/*.hhc
85+
DocProject/Help/*.hhk
86+
DocProject/Help/*.hhp
87+
DocProject/Help/Html2
88+
DocProject/Help/html
89+
90+
# Click-Once directory
91+
publish/
92+
93+
# Publish Web Output
94+
*.Publish.xml
95+
*.pubxml
96+
97+
# Windows Azure Build Output
98+
csx
99+
*.build.csdef
100+
101+
# Windows Store app package directory
102+
AppPackages/
103+
104+
# NCrunch
105+
_NCrunch_*/
106+
*.ncrunchsolution.user
107+
nCrunchTemp_*
108+
109+
# CodeRush
110+
.cr/
111+
112+
# Others
113+
sql/
114+
*.Cache
115+
ClientBin/
116+
[Ss]tyle[Cc]op.*
117+
~$*
118+
*~
119+
*.dbmdl
120+
*.[Pp]ublish.xml
121+
*.pfx
122+
*.publishsettings
123+
Events_Avalonia.cs
124+
125+
# RIA/Silverlight projects
126+
Generated_Code/
127+
128+
# Backup & report files from converting an old project file to a newer
129+
# Visual Studio version. Backup files are not needed, because we have git ;-)
130+
_UpgradeReport_Files/
131+
Backup*/
132+
UpgradeLog*.XML
133+
UpgradeLog*.htm
134+
135+
# SQL Server files
136+
App_Data/*.mdf
137+
App_Data/*.ldf
138+
139+
#############
140+
## Windows detritus
141+
#############
142+
143+
# Windows image file caches
144+
Thumbs.db
145+
ehthumbs.db
146+
147+
# Folder config file
148+
Desktop.ini
149+
150+
# Recycle Bin used on file shares
151+
$RECYCLE.BIN/
152+
153+
# Mac crap
154+
.DS_Store
155+
156+
#################
157+
## Monodevelop
158+
#################
159+
*.userprefs
160+
*.nugetreferenceswitcher
161+
162+
163+
#################
164+
## Rider
165+
#################
166+
.idea
167+
168+
#################
169+
## VS Code
170+
#################
171+
.vscode/
172+
173+
#################
174+
## Cake
175+
#################
176+
tools/*
177+
!tools/packages.config
178+
.nuget
179+
artifacts/
180+
nuget
181+
Avalonia.XBuild.sln
182+
project.lock.json
183+
.idea/*
184+
185+
186+
##################
187+
## BenchmarkDotNet
188+
##################
189+
BenchmarkDotNet.Artifacts/
190+
191+
dirs.sln
192+
193+
194+
##################
195+
# XCode
196+
##################
197+
Index/
198+
Logs/
199+
ModuleCache.noindex/
200+
Build/Intermediates.noindex/
201+
info.plist
202+
build-intermediate
203+
obj-Direct2D1/
204+
obj-Skia/
205+
206+
##################
207+
# Vim
208+
##################
209+
.vim
210+
coc-settings.json
211+
.ccls-cache
212+
.ccls

0 commit comments

Comments
 (0)