Skip to content

Commit 73be2bb

Browse files
committed
Add gitignore file
1 parent 8798b0b commit 73be2bb

File tree

1 file changed

+376
-0
lines changed

1 file changed

+376
-0
lines changed

.gitignore

Lines changed: 376 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,376 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
6+
# User-specific files
7+
*.suo
8+
*.user
9+
*.userosscache
10+
*.sln.docstates
11+
12+
# User-specific files (MonoDevelop/Xamarin Studio)
13+
*.userprefs
14+
15+
# Tools pulled down during build
16+
.tools/
17+
.dotnet/
18+
.packages/
19+
20+
# Build results
21+
[Dd]ebug/
22+
[Dd]ebugPublic/
23+
[Rr]elease/
24+
[Rr]eleases/
25+
x64/
26+
x86/
27+
bld/
28+
[Bb]in/
29+
[Oo]bj/
30+
[Ll]og/
31+
32+
# Visual Studio 2015/2017 cache/options directory
33+
.vs/
34+
# Uncomment if you have tasks that create the project's static files in wwwroot
35+
#wwwroot/
36+
37+
# Visual Studio 2017 auto generated files
38+
Generated\ Files/
39+
40+
# MSTest test Results
41+
[Tt]est[Rr]esult*/
42+
[Bb]uild[Ll]og.*
43+
44+
# NUNIT
45+
*.VisualState.xml
46+
TestResult.xml
47+
48+
# Build Results of an ATL Project
49+
[Dd]ebugPS/
50+
[Rr]eleasePS/
51+
dlldata.c
52+
53+
# Benchmark Results
54+
BenchmarkDotNet.Artifacts/
55+
56+
# .NET Core
57+
project.lock.json
58+
project.fragment.lock.json
59+
artifacts/
60+
.dotnet/
61+
62+
# StyleCop
63+
StyleCopReport.xml
64+
65+
# Files built by Visual Studio
66+
*_i.c
67+
*_p.c
68+
*_i.h
69+
*.ilk
70+
*.meta
71+
*.obj
72+
*.iobj
73+
*.pch
74+
*.pdb
75+
*.ipdb
76+
*.pgc
77+
*.pgd
78+
*.rsp
79+
*.sbr
80+
*.tlb
81+
*.tli
82+
*.tlh
83+
*.tmp
84+
*.tmp_proj
85+
*.log
86+
*.vspscc
87+
*.vssscc
88+
.builds
89+
*.pidb
90+
*.svclog
91+
*.scc
92+
93+
# Chutzpah Test files
94+
_Chutzpah*
95+
96+
# Visual C++ cache files
97+
ipch/
98+
*.aps
99+
*.ncb
100+
*.opendb
101+
*.opensdf
102+
*.sdf
103+
*.cachefile
104+
*.VC.db
105+
*.VC.VC.opendb
106+
107+
# Visual Studio profiler
108+
*.psess
109+
*.vsp
110+
*.vspx
111+
*.sap
112+
113+
# Visual Studio Trace Files
114+
*.e2e
115+
116+
# TFS 2012 Local Workspace
117+
$tf/
118+
119+
# Guidance Automation Toolkit
120+
*.gpState
121+
122+
# ReSharper is a .NET coding add-in
123+
_ReSharper*/
124+
*.[Rr]e[Ss]harper
125+
*.DotSettings.user
126+
127+
# JustCode is a .NET coding add-in
128+
.JustCode
129+
130+
# TeamCity is a build add-in
131+
_TeamCity*
132+
133+
# DotCover is a Code Coverage Tool
134+
*.dotCover
135+
136+
# AxoCover is a Code Coverage Tool
137+
.axoCover/*
138+
!.axoCover/settings.json
139+
140+
# Visual Studio code coverage results
141+
*.coverage
142+
*.coveragexml
143+
144+
# Visual Studio Code
145+
.vscode/*
146+
!.vscode/settings.json
147+
!.vscode/tasks.json
148+
!.vscode/launch.json
149+
!.vscode/extensions.json
150+
151+
# NCrunch
152+
_NCrunch_*
153+
.*crunch*.local.xml
154+
nCrunchTemp_*
155+
156+
# MightyMoose
157+
*.mm.*
158+
AutoTest.Net/
159+
160+
# Web workbench (sass)
161+
.sass-cache/
162+
163+
# Installshield output folder
164+
[Ee]xpress/
165+
166+
# DocProject is a documentation generator add-in
167+
DocProject/buildhelp/
168+
DocProject/Help/*.HxT
169+
DocProject/Help/*.HxC
170+
DocProject/Help/*.hhc
171+
DocProject/Help/*.hhk
172+
DocProject/Help/*.hhp
173+
DocProject/Help/Html2
174+
DocProject/Help/html
175+
176+
# Click-Once directory
177+
publish/
178+
179+
# Publish Web Output
180+
*.[Pp]ublish.xml
181+
*.azurePubxml
182+
# Note: Comment the next line if you want to checkin your web deploy settings,
183+
# but database connection strings (with potential passwords) will be unencrypted
184+
*.pubxml
185+
*.publishproj
186+
187+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
188+
# checkin your Azure Web App publish settings, but sensitive information contained
189+
# in these scripts will be unencrypted
190+
PublishScripts/
191+
192+
# NuGet Packages
193+
*.nupkg
194+
# The packages folder can be ignored because of Package Restore
195+
**/[Pp]ackages/*
196+
# except build/, which is used as an MSBuild target.
197+
!**/[Pp]ackages/build/
198+
# Uncomment if necessary however generally it will be regenerated when needed
199+
#!**/[Pp]ackages/repositories.config
200+
# NuGet v3's project.json files produces more ignorable files
201+
*.nuget.props
202+
*.nuget.targets
203+
204+
# Microsoft Azure Build Output
205+
csx/
206+
*.build.csdef
207+
208+
# Microsoft Azure Emulator
209+
ecf/
210+
rcf/
211+
212+
# Windows Store app package directories and files
213+
AppPackages/
214+
BundleArtifacts/
215+
Package.StoreAssociation.xml
216+
_pkginfo.txt
217+
*.appx
218+
219+
# Visual Studio cache files
220+
# files ending in .cache can be ignored
221+
*.[Cc]ache
222+
# but keep track of directories ending in .cache
223+
!*.[Cc]ache/
224+
225+
# Others
226+
ClientBin/
227+
~$*
228+
*~
229+
*.dbmdl
230+
*.dbproj.schemaview
231+
*.jfm
232+
*.pfx
233+
*.publishsettings
234+
orleans.codegen.cs
235+
236+
# Including strong name files can present a security risk
237+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
238+
#*.snk
239+
240+
# Since there are multiple workflows, uncomment next line to ignore bower_components
241+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
242+
#bower_components/
243+
244+
# RIA/Silverlight projects
245+
Generated_Code/
246+
247+
# Backup & report files from converting an old project file
248+
# to a newer Visual Studio version. Backup files are not needed,
249+
# because we have git ;-)
250+
_UpgradeReport_Files/
251+
Backup*/
252+
UpgradeLog*.XML
253+
UpgradeLog*.htm
254+
ServiceFabricBackup/
255+
*.rptproj.bak
256+
257+
# SQL Server files
258+
*.mdf
259+
*.ldf
260+
*.ndf
261+
262+
# Business Intelligence projects
263+
*.rdl.data
264+
*.bim.layout
265+
*.bim_*.settings
266+
*.rptproj.rsuser
267+
268+
# Microsoft Fakes
269+
FakesAssemblies/
270+
271+
# GhostDoc plugin setting file
272+
*.GhostDoc.xml
273+
274+
# Node.js Tools for Visual Studio
275+
.ntvs_analysis.dat
276+
node_modules/
277+
278+
# Visual Studio 6 build log
279+
*.plg
280+
281+
# Visual Studio 6 workspace options file
282+
*.opt
283+
284+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
285+
*.vbw
286+
287+
# Visual Studio LightSwitch build output
288+
**/*.HTMLClient/GeneratedArtifacts
289+
**/*.DesktopClient/GeneratedArtifacts
290+
**/*.DesktopClient/ModelManifest.xml
291+
**/*.Server/GeneratedArtifacts
292+
**/*.Server/ModelManifest.xml
293+
_Pvt_Extensions
294+
295+
# Paket dependency manager
296+
.paket/paket.exe
297+
paket-files/
298+
299+
# FAKE - F# Make
300+
.fake/
301+
302+
# JetBrains Rider
303+
.idea/
304+
*.sln.iml
305+
306+
# CodeRush
307+
.cr/
308+
309+
# Python Tools for Visual Studio (PTVS)
310+
__pycache__/
311+
*.pyc
312+
313+
# Cake - Uncomment if you are using it
314+
# tools/**
315+
# !tools/packages.config
316+
317+
# Tabs Studio
318+
*.tss
319+
320+
# Telerik's JustMock configuration file
321+
*.jmconfig
322+
323+
# BizTalk build output
324+
*.btp.cs
325+
*.btm.cs
326+
*.odx.cs
327+
*.xsd.cs
328+
329+
# OpenCover UI analysis results
330+
OpenCover/
331+
332+
# Azure Stream Analytics local run output
333+
ASALocalRun/
334+
335+
# MSBuild Binary and Structured Log
336+
*.binlog
337+
338+
# NVidia Nsight GPU debugger configuration file
339+
*.nvuser
340+
341+
# MFractors (Xamarin productivity tool) working folder
342+
.mfractor/
343+
344+
### OSX ###
345+
346+
# General
347+
.DS_Store
348+
.AppleDouble
349+
.LSOverride
350+
351+
# Icon must end with two \r
352+
Icon
353+
354+
355+
# Thumbnails
356+
._*
357+
358+
# Files that might appear in the root of a volume
359+
.DocumentRevisions-V100
360+
.fseventsd
361+
.Spotlight-V100
362+
.TemporaryItems
363+
.Trashes
364+
.VolumeIcon.icns
365+
.com.apple.timemachine.donotpresent
366+
367+
# Directories potentially created on remote AFP share
368+
.AppleDB
369+
.AppleDesktop
370+
Network Trash Folder
371+
Temporary Items
372+
.apdisk
373+
374+
# Ignore "InteropTests/NativeTests/out"
375+
InteropTests/NativeTests/out
376+
/src/System.Windows.Forms/src/comctl32.dll

0 commit comments

Comments
 (0)