Skip to content

Commit f681880

Browse files
author
Brian MacKay
committed
Updated .gitignore for more recent Visual Studio versions
1 parent df62209 commit f681880

1 file changed

Lines changed: 285 additions & 30 deletions

File tree

.gitignore

Lines changed: 285 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,78 @@
1-
# Build and Object Folders
2-
bin/
3-
obj/
4-
5-
#User Specific Files
6-
*.user
7-
*.suo
81
## Ignore Visual Studio temporary files, build results, and
92
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
106
# User-specific files
7+
*.rsuser
8+
*.suo
9+
*.user
10+
*.userosscache
1111
*.sln.docstates
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Mono auto generated files
17+
mono_crash.*
18+
1219
# Build results
1320
[Dd]ebug/
21+
[Dd]ebugPublic/
1422
[Rr]elease/
23+
[Rr]eleases/
1524
x64/
25+
x86/
26+
[Aa][Rr][Mm]/
27+
[Aa][Rr][Mm]64/
28+
bld/
29+
[Bb]in/
30+
[Oo]bj/
31+
[Ll]og/
32+
33+
# Visual Studio 2015/2017 cache/options directory
34+
.vs/
35+
# Uncomment if you have tasks that create the project's static files in wwwroot
36+
#wwwroot/
37+
38+
# Visual Studio 2017 auto generated files
39+
Generated\ Files/
40+
41+
# MSTest test Results
42+
[Tt]est[Rr]esult*/
43+
[Bb]uild[Ll]og.*
44+
45+
# NUNIT
46+
*.VisualState.xml
47+
TestResult.xml
48+
49+
# Build Results of an ATL Project
50+
[Dd]ebugPS/
51+
[Rr]eleasePS/
52+
dlldata.c
53+
54+
# Benchmark Results
55+
BenchmarkDotNet.Artifacts/
56+
57+
# .NET Core
58+
project.lock.json
59+
project.fragment.lock.json
60+
artifacts/
61+
62+
# StyleCop
63+
StyleCopReport.xml
64+
65+
# Files built by Visual Studio
1666
*_i.c
1767
*_p.c
68+
*_h.h
1869
*.ilk
1970
*.meta
2071
*.obj
72+
*.iobj
2173
*.pch
2274
*.pdb
75+
*.ipdb
2376
*.pgc
2477
*.pgd
2578
*.rsp
@@ -28,29 +81,82 @@ x64/
2881
*.tli
2982
*.tlh
3083
*.tmp
84+
*.tmp_proj
85+
*_wpftmp.csproj
3186
*.log
3287
*.vspscc
3388
*.vssscc
3489
.builds
90+
*.pidb
91+
*.svclog
92+
*.scc
93+
94+
# Chutzpah Test files
95+
_Chutzpah*
96+
3597
# Visual C++ cache files
3698
ipch/
3799
*.aps
38100
*.ncb
101+
*.opendb
39102
*.opensdf
40103
*.sdf
104+
*.cachefile
105+
*.VC.db
106+
*.VC.VC.opendb
107+
41108
# Visual Studio profiler
42109
*.psess
43110
*.vsp
44111
*.vspx
112+
*.sap
113+
114+
# Visual Studio Trace Files
115+
*.e2e
116+
117+
# TFS 2012 Local Workspace
118+
$tf/
119+
45120
# Guidance Automation Toolkit
46121
*.gpState
122+
47123
# ReSharper is a .NET coding add-in
48-
_ReSharper*
124+
_ReSharper*/
125+
*.[Rr]e[Ss]harper
126+
*.DotSettings.user
127+
128+
# JustCode is a .NET coding add-in
129+
.JustCode
130+
131+
# TeamCity is a build add-in
132+
_TeamCity*
133+
134+
# DotCover is a Code Coverage Tool
135+
*.dotCover
136+
137+
# AxoCover is a Code Coverage Tool
138+
.axoCover/*
139+
!.axoCover/settings.json
140+
141+
# Visual Studio code coverage results
142+
*.coverage
143+
*.coveragexml
144+
49145
# NCrunch
50-
*.ncrunch*
146+
_NCrunch_*
51147
.*crunch*.local.xml
52-
# Installshield output folder
53-
[Ee]xpress
148+
nCrunchTemp_*
149+
150+
# MightyMoose
151+
*.mm.*
152+
AutoTest.Net/
153+
154+
# Web workbench (sass)
155+
.sass-cache/
156+
157+
# Installshield output folder
158+
[Ee]xpress/
159+
54160
# DocProject is a documentation generator add-in
55161
DocProject/buildhelp/
56162
DocProject/Help/*.HxT
@@ -60,30 +166,179 @@ DocProject/Help/*.hhk
60166
DocProject/Help/*.hhp
61167
DocProject/Help/Html2
62168
DocProject/Help/html
169+
63170
# Click-Once directory
64-
publish
171+
publish/
172+
65173
# Publish Web Output
66-
*.Publish.xml
174+
*.[Pp]ublish.xml
175+
*.azurePubxml
176+
# Note: Comment the next line if you want to checkin your web deploy settings,
177+
# but database connection strings (with potential passwords) will be unencrypted
178+
*.pubxml
179+
*.publishproj
180+
181+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
182+
# checkin your Azure Web App publish settings, but sensitive information contained
183+
# in these scripts will be unencrypted
184+
PublishScripts/
185+
186+
# NuGet Packages
187+
*.nupkg
188+
# The packages folder can be ignored because of Package Restore
189+
**/[Pp]ackages/*
190+
# except build/, which is used as an MSBuild target.
191+
!**/[Pp]ackages/build/
192+
# Uncomment if necessary however generally it will be regenerated when needed
193+
#!**/[Pp]ackages/repositories.config
194+
# NuGet v3's project.json files produces more ignorable files
195+
*.nuget.props
196+
*.nuget.targets
197+
198+
# Microsoft Azure Build Output
199+
csx/
200+
*.build.csdef
201+
202+
# Microsoft Azure Emulator
203+
ecf/
204+
rcf/
205+
206+
# Windows Store app package directories and files
207+
AppPackages/
208+
BundleArtifacts/
209+
Package.StoreAssociation.xml
210+
_pkginfo.txt
211+
*.appx
212+
*.appxbundle
213+
*.appxupload
214+
215+
# Visual Studio cache files
216+
# files ending in .cache can be ignored
217+
*.[Cc]ache
218+
# but keep track of directories ending in .cache
219+
!?*.[Cc]ache/
220+
67221
# Others
68-
[Bb]in
69-
[Oo]bj
70-
sql
71-
TestResults
72-
[Tt]est[Rr]esult*
73-
*.Cache
74-
ClientBin
75-
[Ss]tyle[Cc]op.*
222+
ClientBin/
76223
~$*
224+
*~
77225
*.dbmdl
78-
Generated_Code #added for RIA/Silverlight projects
79-
# Backup & report files from converting an old project file to a newer
80-
# Visual Studio version. Backup files are not needed, because we have git ;-)
226+
*.dbproj.schemaview
227+
*.jfm
228+
*.pfx
229+
*.publishsettings
230+
orleans.codegen.cs
231+
232+
# Including strong name files can present a security risk
233+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
234+
#*.snk
235+
236+
# Since there are multiple workflows, uncomment next line to ignore bower_components
237+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
238+
#bower_components/
239+
240+
# RIA/Silverlight projects
241+
Generated_Code/
242+
243+
# Backup & report files from converting an old project file
244+
# to a newer Visual Studio version. Backup files are not needed,
245+
# because we have git ;-)
81246
_UpgradeReport_Files/
82247
Backup*/
83-
UpgradeLog.htm
84-
UpgradeLog.XML
248+
UpgradeLog*.XML
249+
UpgradeLog*.htm
250+
ServiceFabricBackup/
251+
*.rptproj.bak
252+
253+
# SQL Server files
254+
*.mdf
255+
*.ldf
256+
*.ndf
257+
258+
# Business Intelligence projects
259+
*.rdl.data
260+
*.bim.layout
261+
*.bim_*.settings
262+
*.rptproj.rsuser
263+
*- Backup*.rdl
264+
265+
# Microsoft Fakes
266+
FakesAssemblies/
267+
268+
# GhostDoc plugin setting file
269+
*.GhostDoc.xml
270+
271+
# Node.js Tools for Visual Studio
272+
.ntvs_analysis.dat
273+
node_modules/
274+
275+
# Visual Studio 6 build log
276+
*.plg
277+
278+
# Visual Studio 6 workspace options file
279+
*.opt
280+
281+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
282+
*.vbw
283+
284+
# Visual Studio LightSwitch build output
285+
**/*.HTMLClient/GeneratedArtifacts
286+
**/*.DesktopClient/GeneratedArtifacts
287+
**/*.DesktopClient/ModelManifest.xml
288+
**/*.Server/GeneratedArtifacts
289+
**/*.Server/ModelManifest.xml
290+
_Pvt_Extensions
291+
292+
# Paket dependency manager
293+
.paket/paket.exe
294+
paket-files/
295+
296+
# FAKE - F# Make
297+
.fake/
298+
299+
# CodeRush personal settings
300+
.cr/personal
301+
302+
# Python Tools for Visual Studio (PTVS)
303+
__pycache__/
304+
*.pyc
305+
306+
# Cake - Uncomment if you are using it
307+
# tools/**
308+
# !tools/packages.config
309+
310+
# Tabs Studio
311+
*.tss
312+
313+
# Telerik's JustMock configuration file
314+
*.jmconfig
315+
316+
# BizTalk build output
317+
*.btp.cs
318+
*.btm.cs
319+
*.odx.cs
320+
*.xsd.cs
321+
322+
# OpenCover UI analysis results
323+
OpenCover/
324+
325+
# Azure Stream Analytics local run output
326+
ASALocalRun/
327+
328+
# MSBuild Binary and Structured Log
329+
*.binlog
330+
331+
# NVidia Nsight GPU debugger configuration file
332+
*.nvuser
333+
334+
# MFractors (Xamarin productivity tool) working folder
335+
.mfractor/
336+
337+
# Local History for Visual Studio
338+
.localhistory/
339+
340+
# BeatPulse healthcheck temp database
341+
healthchecksdb
85342

86-
# Packages
87-
nuget.exe
88-
Source/packages/*
89-
!Source/packages/repositories.config
343+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
344+
MigrationBackup/

0 commit comments

Comments
 (0)