aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore202
1 files changed, 202 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c1a38ed
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,202 @@
1## Ignore Visual Studio temporary files, build results, and
2## files generated by popular Visual Studio add-ons.
3
4*.jpeg
5*.jpg
6*.bmp
7*.png
8
9# User-specific files
10*.suo
11*.user
12*.userosscache
13*.sln.docstates
14
15# User-specific files (MonoDevelop/Xamarin Studio)
16*.userprefs
17
18# Build results
19[Dd]ebug/
20[Dd]ebugPublic/
21[Rr]elease/
22[Rr]eleases/
23x64/
24x86/
25build/
26bld/
27[Bb]in/
28[Oo]bj/
29
30# Visual Studo 2015 cache/options directory
31.vs/
32
33# MSTest test Results
34[Tt]est[Rr]esult*/
35[Bb]uild[Ll]og.*
36
37# NUNIT
38*.VisualState.xml
39TestResult.xml
40
41# Build Results of an ATL Project
42[Dd]ebugPS/
43[Rr]eleasePS/
44dlldata.c
45
46*_i.c
47*_p.c
48*_i.h
49*.ilk
50*.meta
51*.obj
52*.pch
53*.pdb
54*.pgc
55*.pgd
56*.rsp
57*.sbr
58*.tlb
59*.tli
60*.tlh
61*.tmp
62*.tmp_proj
63*.log
64*.vspscc
65*.vssscc
66.builds
67*.pidb
68*.svclog
69*.scc
70
71# Chutzpah Test files
72_Chutzpah*
73
74# Visual C++ cache files
75ipch/
76*.aps
77*.ncb
78*.opensdf
79*.sdf
80*.cachefile
81
82# Visual Studio profiler
83*.psess
84*.vsp
85*.vspx
86
87# TFS 2012 Local Workspace
88$tf/
89
90# Guidance Automation Toolkit
91*.gpState
92
93# ReSharper is a .NET coding add-in
94_ReSharper*/
95*.[Rr]e[Ss]harper
96*.DotSettings.user
97
98# JustCode is a .NET coding addin-in
99.JustCode
100
101# TeamCity is a build add-in
102_TeamCity*
103
104# DotCover is a Code Coverage Tool
105*.dotCover
106
107# NCrunch
108_NCrunch_*
109.*crunch*.local.xml
110
111# MightyMoose
112*.mm.*
113AutoTest.Net/
114
115# Web workbench (sass)
116.sass-cache/
117
118# Installshield output folder
119[Ee]xpress/
120
121# DocProject is a documentation generator add-in
122DocProject/buildhelp/
123DocProject/Help/*.HxT
124DocProject/Help/*.HxC
125DocProject/Help/*.hhc
126DocProject/Help/*.hhk
127DocProject/Help/*.hhp
128DocProject/Help/Html2
129DocProject/Help/html
130
131# Click-Once directory
132publish/
133
134# Publish Web Output
135*.[Pp]ublish.xml
136*.azurePubxml
137# TODO: Comment the next line if you want to checkin your web deploy settings
138# but database connection strings (with potential passwords) will be unencrypted
139*.pubxml
140*.publishproj
141
142# NuGet Packages
143*.nupkg
144# The packages folder can be ignored because of Package Restore
145**/packages/*
146# except build/, which is used as an MSBuild target.
147!**/packages/build/
148# Uncomment if necessary however generally it will be regenerated when needed
149#!**/packages/repositories.config
150
151# Windows Azure Build Output
152csx/
153*.build.csdef
154
155# Windows Store app package directory
156AppPackages/
157
158# Others
159*.[Cc]ache
160ClientBin/
161[Ss]tyle[Cc]op.*
162~$*
163*~
164*.dbmdl
165*.dbproj.schemaview
166*.pfx
167*.publishsettings
168node_modules/
169bower_components/
170
171# RIA/Silverlight projects
172Generated_Code/
173
174# Backup & report files from converting an old project file
175# to a newer Visual Studio version. Backup files are not needed,
176# because we have git ;-)
177_UpgradeReport_Files/
178Backup*/
179UpgradeLog*.XML
180UpgradeLog*.htm
181
182# SQL Server files
183*.mdf
184*.ldf
185
186# Business Intelligence projects
187*.rdl.data
188*.bim.layout
189*.bim_*.settings
190
191# Microsoft Fakes
192FakesAssemblies/
193
194# Node.js Tools for Visual Studio
195.ntvs_analysis.dat
196
197# Visual Studio 6 build log
198*.plg
199
200# Visual Studio 6 workspace options file
201*.opt
202
Powered by cgit v1.2.3 (git 2.41.0)