Skip to content

Commit a848353

Browse files
committed
adding ignore for vs project
1 parent 72ba05a commit a848353

File tree

1 file changed

+178
-0
lines changed

1 file changed

+178
-0
lines changed

VS.gitignore

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

0 commit comments

Comments
 (0)