Skip to content

Commit 4e290c2

Browse files
committed
added .gitignore
1 parent 89e0224 commit 4e290c2

File tree

2 files changed

+247
-0
lines changed

2 files changed

+247
-0
lines changed

.gitignore

Lines changed: 246 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,246 @@
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+
*.userosscache
8+
*.sln.docstates
9+
*.so*
10+
*.o
11+
*.exe
12+
*.dylib
13+
14+
# User-specific files (MonoDevelop/Xamarin Studio)
15+
*.userprefs
16+
17+
# Build results
18+
[Dd]ebug/
19+
[Dd]ebugPublic/
20+
[Rr]elease/
21+
[Rr]eleases/
22+
[Xx]64/
23+
[Xx]86/
24+
[Bb]uild/
25+
bld/
26+
[Bb]in/
27+
[Oo]bj/
28+
29+
# Visual Studio 2015 cache/options directory
30+
.vs/
31+
# Uncomment if you have tasks that create the project's static files in wwwroot
32+
#wwwroot/
33+
34+
# MSTest test Results
35+
[Tt]est[Rr]esult*/
36+
[Bb]uild[Ll]og.*
37+
38+
# NUNIT
39+
*.VisualState.xml
40+
TestResult.xml
41+
42+
# Build Results of an ATL Project
43+
[Dd]ebugPS/
44+
[Rr]eleasePS/
45+
dlldata.c
46+
47+
# DNX
48+
project.lock.json
49+
artifacts/
50+
51+
*_i.c
52+
*_p.c
53+
*_i.h
54+
*.ilk
55+
*.meta
56+
*.obj
57+
*.pch
58+
*.pdb
59+
*.pgc
60+
*.pgd
61+
*.rsp
62+
*.sbr
63+
*.tlb
64+
*.tli
65+
*.tlh
66+
*.tmp
67+
*.tmp_proj
68+
*.log
69+
*.vspscc
70+
*.vssscc
71+
.builds
72+
*.pidb
73+
*.svclog
74+
*.scc
75+
76+
# Chutzpah Test files
77+
_Chutzpah*
78+
79+
# Visual C++ cache files
80+
ipch/
81+
*.aps
82+
*.ncb
83+
*.opendb
84+
*.opensdf
85+
*.sdf
86+
*.cachefile
87+
*.VC.db
88+
89+
# Visual Studio profiler
90+
*.psess
91+
*.vsp
92+
*.vspx
93+
*.sap
94+
95+
# TFS 2012 Local Workspace
96+
$tf/
97+
98+
# Guidance Automation Toolkit
99+
*.gpState
100+
101+
# ReSharper is a .NET coding add-in
102+
_ReSharper*/
103+
*.[Rr]e[Ss]harper
104+
*.DotSettings.user
105+
106+
# JustCode is a .NET coding add-in
107+
.JustCode
108+
109+
# TeamCity is a build add-in
110+
_TeamCity*
111+
112+
# DotCover is a Code Coverage Tool
113+
*.dotCover
114+
115+
# NCrunch
116+
_NCrunch_*
117+
.*crunch*.local.xml
118+
nCrunchTemp_*
119+
120+
# MightyMoose
121+
*.mm.*
122+
AutoTest.Net/
123+
124+
# Web workbench (sass)
125+
.sass-cache/
126+
127+
# Installshield output folder
128+
[Ee]xpress/
129+
130+
# DocProject is a documentation generator add-in
131+
DocProject/buildhelp/
132+
DocProject/Help/*.HxT
133+
DocProject/Help/*.HxC
134+
DocProject/Help/*.hhc
135+
DocProject/Help/*.hhk
136+
DocProject/Help/*.hhp
137+
DocProject/Help/Html2
138+
DocProject/Help/html
139+
140+
# Click-Once directory
141+
publish/
142+
143+
# Publish Web Output
144+
*.[Pp]ublish.xml
145+
*.azurePubxml
146+
147+
# TODO: Un-comment the next line if you do not want to checkin
148+
# your web deploy settings because they may include unencrypted
149+
# passwords
150+
#*.pubxml
151+
*.publishproj
152+
153+
# NuGet Packages
154+
*.nupkg
155+
# The packages folder can be ignored because of Package Restore
156+
**/packages/*
157+
# except build/, which is used as an MSBuild target.
158+
!**/packages/build/
159+
# Uncomment if necessary however generally it will be regenerated when needed
160+
#!**/packages/repositories.config
161+
# NuGet v3's project.json files produces more ignoreable files
162+
*.nuget.props
163+
*.nuget.targets
164+
165+
# Microsoft Azure Build Output
166+
csx/
167+
*.build.csdef
168+
169+
# Microsoft Azure Emulator
170+
ecf/
171+
rcf/
172+
173+
# Windows Store app package directory
174+
AppPackages/
175+
BundleArtifacts/
176+
177+
# Visual Studio cache files
178+
# files ending in .cache can be ignored
179+
*.[Cc]ache
180+
# but keep track of directories ending in .cache
181+
!*.[Cc]ache/
182+
183+
# Others
184+
ClientBin/
185+
[Ss]tyle[Cc]op.*
186+
~$*
187+
*~
188+
*.dbmdl
189+
*.dbproj.schemaview
190+
*.pfx
191+
*.publishsettings
192+
node_modules/
193+
orleans.codegen.cs
194+
195+
# RIA/Silverlight projects
196+
Generated_Code/
197+
198+
# Backup & report files from converting an old project file
199+
# to a newer Visual Studio version. Backup files are not needed,
200+
# because we have git ;-)
201+
_UpgradeReport_Files/
202+
Backup*/
203+
UpgradeLog*.XML
204+
UpgradeLog*.htm
205+
206+
# SQL Server files
207+
*.mdf
208+
*.ldf
209+
210+
# Business Intelligence projects
211+
*.rdl.data
212+
*.bim.layout
213+
*.bim_*.settings
214+
215+
# Microsoft Fakes
216+
FakesAssemblies/
217+
218+
# GhostDoc plugin setting file
219+
*.GhostDoc.xml
220+
221+
# Node.js Tools for Visual Studio
222+
.ntvs_analysis.dat
223+
224+
# Visual Studio 6 build log
225+
*.plg
226+
227+
# Visual Studio 6 workspace options file
228+
*.opt
229+
230+
# Visual Studio LightSwitch build output
231+
**/*.HTMLClient/GeneratedArtifacts
232+
**/*.DesktopClient/GeneratedArtifacts
233+
**/*.DesktopClient/ModelManifest.xml
234+
**/*.Server/GeneratedArtifacts
235+
**/*.Server/ModelManifest.xml
236+
_Pvt_Extensions
237+
238+
# LightSwitch generated files
239+
GeneratedArtifacts/
240+
ModelManifest.xml
241+
242+
# Paket dependency manager
243+
.paket/paket.exe
244+
245+
# FAKE - F# Make
246+
.fake/

Filters.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@
3333
5D21 flip (horizontal, vertical)
3434
5D22 rotate (90, 180, 270)
3535
5D23 nearest (nearest-neighbor 2x)
36+
5D24 tvzero (1x)

0 commit comments

Comments
 (0)