Skip to content

Commit 1737815

Browse files
committed
Updated gitignore
1 parent 9f0aac5 commit 1737815

File tree

1 file changed

+194
-10
lines changed

1 file changed

+194
-10
lines changed

.gitignore

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

0 commit comments

Comments
 (0)