1## ignore .DS_Store on macOS
2*.DS_Store
3
4## Ignore Visual Studio temporary files, build results, and
5## files generated by popular Visual Studio add-ons.
6##
7## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
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/
25bld/
26[Bb]in/
27[Oo]bj/
28[Ll]og/
29
30# Visual Studio 2015 cache/options directory
31.vs/
32# Uncomment if you have tasks that create the project's static files in wwwroot
33#wwwroot/
34
35# MSTest test Results
36[Tt]est[Rr]esult*/
37[Bb]uild[Ll]og.*
38
39# NUNIT
40*.VisualState.xml
41TestResult.xml
42
43# Build Results of an ATL Project
44[Dd]ebugPS/
45[Rr]eleasePS/
46dlldata.c
47
48# .NET Core
49project.lock.json
50project.fragment.lock.json
51artifacts/
52**/Properties/launchSettings.json
53
54*_i.c
55*_p.c
56*_i.h
57*.ilk
58*.meta
59*.obj
60*.pch
61*.pdb
62*.pgc
63*.pgd
64*.rsp
65*.sbr
66*.tlb
67*.tli
68*.tlh
69*.tmp
70*.tmp_proj
71*.log
72*.vspscc
73*.vssscc
74.builds
75*.pidb
76*.svclog
77*.scc
78
79# Chutzpah Test files
80_Chutzpah*
81
82# Visual C++ cache files
83ipch/
84*.aps
85*.ncb
86*.opendb
87*.opensdf
88*.sdf
89*.cachefile
90*.VC.db
91*.VC.VC.opendb
92
93# Visual Studio profiler
94*.psess
95*.vsp
96*.vspx
97*.sap
98
99# TFS 2012 Local Workspace
100$tf/
101
102# Guidance Automation Toolkit
103*.gpState
104
105# ReSharper is a .NET coding add-in
106_ReSharper*/
107*.[Rr]e[Ss]harper
108*.DotSettings.user
109
110# JustCode is a .NET coding add-in
111.JustCode
112
113# TeamCity is a build add-in
114_TeamCity*
115
116# DotCover is a Code Coverage Tool
117*.dotCover
118
119# Visual Studio code coverage results
120*.coverage
121*.coveragexml
122
123# NCrunch
124_NCrunch_*
125.*crunch*.local.xml
126nCrunchTemp_*
127
128# MightyMoose
129*.mm.*
130AutoTest.Net/
131
132# Web workbench (sass)
133.sass-cache/
134
135# Installshield output folder
136[Ee]xpress/
137
138# DocProject is a documentation generator add-in
139DocProject/buildhelp/
140DocProject/Help/*.HxT
141DocProject/Help/*.HxC
142DocProject/Help/*.hhc
143DocProject/Help/*.hhk
144DocProject/Help/*.hhp
145DocProject/Help/Html2
146DocProject/Help/html
147
148# Click-Once directory
149publish/
150
151# Publish Web Output
152*.[Pp]ublish.xml
153*.azurePubxml
154# TODO: Comment the next line if you want to checkin your web deploy settings
155# but database connection strings (with potential passwords) will be unencrypted
156*.pubxml
157*.publishproj
158
159# Microsoft Azure Web App publish settings. Comment the next line if you want to
160# checkin your Azure Web App publish settings, but sensitive information contained
161# in these scripts will be unencrypted
162PublishScripts/
163
164# NuGet Packages
165*.nupkg
166# The packages folder can be ignored because of Package Restore
167**/packages/*
168# except build/, which is used as an MSBuild target.
169!**/packages/build/
170# Uncomment if necessary however generally it will be regenerated when needed
171#!**/packages/repositories.config
172# NuGet v3's project.json files produces more ignorable files
173*.nuget.props
174*.nuget.targets
175
176# Microsoft Azure Build Output
177csx/
178*.build.csdef
179
180# Microsoft Azure Emulator
181ecf/
182rcf/
183
184# Windows Store app package directories and files
185AppPackages/
186BundleArtifacts/
187Package.StoreAssociation.xml
188_pkginfo.txt
189
190# Visual Studio cache files
191# files ending in .cache can be ignored
192*.[Cc]ache
193# but keep track of directories ending in .cache
194!*.[Cc]ache/
195
196# Others
197ClientBin/
198~$*
199*~
200*.dbmdl
201*.dbproj.schemaview
202*.jfm
203*.pfx
204*.publishsettings
205orleans.codegen.cs
206
207# Since there are multiple workflows, uncomment next line to ignore bower_components
208# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
209#bower_components/
210
211# RIA/Silverlight projects
212Generated_Code/
213
214# Backup & report files from converting an old project file
215# to a newer Visual Studio version. Backup files are not needed,
216# because we have git ;-)
217_UpgradeReport_Files/
218Backup*/
219UpgradeLog*.XML
220UpgradeLog*.htm
221
222# SQL Server files
223*.mdf
224*.ldf
225*.ndf
226
227# Business Intelligence projects
228*.rdl.data
229*.bim.layout
230*.bim_*.settings
231
232# Microsoft Fakes
233FakesAssemblies/
234
235# GhostDoc plugin setting file
236*.GhostDoc.xml
237
238# Node.js Tools for Visual Studio
239.ntvs_analysis.dat
240node_modules/
241
242# Typescript v1 declaration files
243typings/
244
245# Visual Studio 6 build log
246*.plg
247
248# Visual Studio 6 workspace options file
249*.opt
250
251# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
252*.vbw
253
254# Visual Studio LightSwitch build output
255**/*.HTMLClient/GeneratedArtifacts
256**/*.DesktopClient/GeneratedArtifacts
257**/*.DesktopClient/ModelManifest.xml
258**/*.Server/GeneratedArtifacts
259**/*.Server/ModelManifest.xml
260_Pvt_Extensions
261
262# Paket dependency manager
263.paket/paket.exe
264paket-files/
265
266# FAKE - F# Make
267.fake/
268
269# JetBrains Rider
270.idea/
271*.sln.iml
272
273# CodeRush
274.cr/
275
276# Python Tools for Visual Studio (PTVS)
277__pycache__/
278*.pyc
279
280# Cake - Uncomment if you are using it
281# tools/**
282# !tools/packages.config
283
284# Telerik's JustMock configuration file
285*.jmconfig
286
287# BizTalk build output
288*.btp.cs
289*.btm.cs
290*.odx.cs
291*.xsd.cs
292
293vendor/
294*.env
295