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