Skip to content

Commit e5ed65e

Browse files
committed
Create .gitignore
1 parent ca5d4d5 commit e5ed65e

File tree

1 file changed

+355
-0
lines changed

1 file changed

+355
-0
lines changed

.gitignore

Lines changed: 355 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,355 @@
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+
*.rsuser
8+
*.suo
9+
*.user
10+
*.userosscache
11+
*.sln.docstates
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Mono auto generated files
17+
mono_crash.*
18+
19+
# Build results
20+
/*/bin/Debug
21+
/*/*/obj/Debug
22+
[Dd]ebug/
23+
[Dd]ebugPublic/
24+
[Rr]elease/
25+
[Rr]eleases/
26+
x64/
27+
x86/
28+
[Aa][Rr][Mm]/
29+
[Aa][Rr][Mm]64/
30+
bld/
31+
[Bb]in/
32+
[Oo]bj/
33+
[Ll]og/
34+
[Ll]ogs/
35+
36+
# Visual Studio 2015/2017 cache/options directory
37+
.vs/
38+
# Uncomment if you have tasks that create the project's static files in wwwroot
39+
#wwwroot/
40+
41+
# Visual Studio 2017 auto generated files
42+
Generated\ Files/
43+
44+
# MSTest test Results
45+
[Tt]est[Rr]esult*/
46+
[Bb]uild[Ll]og.*
47+
48+
# NUnit
49+
*.VisualState.xml
50+
TestResult.xml
51+
nunit-*.xml
52+
53+
# Build Results of an ATL Project
54+
[Dd]ebugPS/
55+
[Rr]eleasePS/
56+
dlldata.c
57+
58+
# Benchmark Results
59+
BenchmarkDotNet.Artifacts/
60+
61+
# .NET Core
62+
project.lock.json
63+
project.fragment.lock.json
64+
artifacts/
65+
66+
# StyleCop
67+
StyleCopReport.xml
68+
69+
# Files built by Visual Studio
70+
*_i.c
71+
*_p.c
72+
*_h.h
73+
*.ilk
74+
*.meta
75+
*.obj
76+
*.iobj
77+
*.pch
78+
*.pdb
79+
*.ipdb
80+
*.pgc
81+
*.pgd
82+
*.rsp
83+
*.sbr
84+
*.tlb
85+
*.tli
86+
*.tlh
87+
*.tmp
88+
*.tmp_proj
89+
*_wpftmp.csproj
90+
*.log
91+
*.vspscc
92+
*.vssscc
93+
.builds
94+
*.pidb
95+
*.svclog
96+
*.scc
97+
98+
# Chutzpah Test files
99+
_Chutzpah*
100+
101+
# Visual C++ cache files
102+
ipch/
103+
*.aps
104+
*.ncb
105+
*.opendb
106+
*.opensdf
107+
*.sdf
108+
*.cachefile
109+
*.VC.db
110+
*.VC.VC.opendb
111+
112+
# Visual Studio profiler
113+
*.psess
114+
*.vsp
115+
*.vspx
116+
*.sap
117+
118+
# Visual Studio Trace Files
119+
*.e2e
120+
121+
# TFS 2012 Local Workspace
122+
$tf/
123+
124+
# Guidance Automation Toolkit
125+
*.gpState
126+
127+
# ReSharper is a .NET coding add-in
128+
_ReSharper*/
129+
*.[Rr]e[Ss]harper
130+
*.DotSettings.user
131+
132+
# TeamCity is a build add-in
133+
_TeamCity*
134+
135+
# DotCover is a Code Coverage Tool
136+
*.dotCover
137+
138+
# AxoCover is a Code Coverage Tool
139+
.axoCover/*
140+
!.axoCover/settings.json
141+
142+
# Coverlet is a free, cross platform Code Coverage Tool
143+
coverage*[.json, .xml, .info]
144+
145+
# Visual Studio code coverage results
146+
*.coverage
147+
*.coveragexml
148+
149+
# NCrunch
150+
_NCrunch_*
151+
.*crunch*.local.xml
152+
nCrunchTemp_*
153+
154+
# MightyMoose
155+
*.mm.*
156+
AutoTest.Net/
157+
158+
# Web workbench (sass)
159+
.sass-cache/
160+
161+
# Installshield output folder
162+
[Ee]xpress/
163+
164+
# DocProject is a documentation generator add-in
165+
DocProject/buildhelp/
166+
DocProject/Help/*.HxT
167+
DocProject/Help/*.HxC
168+
DocProject/Help/*.hhc
169+
DocProject/Help/*.hhk
170+
DocProject/Help/*.hhp
171+
DocProject/Help/Html2
172+
DocProject/Help/html
173+
174+
# Click-Once directory
175+
publish/
176+
177+
# Publish Web Output
178+
*.[Pp]ublish.xml
179+
*.azurePubxml
180+
# Note: Comment the next line if you want to checkin your web deploy settings,
181+
# but database connection strings (with potential passwords) will be unencrypted
182+
*.pubxml
183+
*.publishproj
184+
185+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
186+
# checkin your Azure Web App publish settings, but sensitive information contained
187+
# in these scripts will be unencrypted
188+
PublishScripts/
189+
190+
# NuGet Packages
191+
*.nupkg
192+
# NuGet Symbol Packages
193+
*.snupkg
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+
*.appxbundle
219+
*.appxupload
220+
221+
# Visual Studio cache files
222+
# files ending in .cache can be ignored
223+
*.[Cc]ache
224+
# but keep track of directories ending in .cache
225+
!?*.[Cc]ache/
226+
227+
# Others
228+
ClientBin/
229+
~$*
230+
*~
231+
*.dbmdl
232+
*.dbproj.schemaview
233+
*.jfm
234+
*.pfx
235+
*.publishsettings
236+
orleans.codegen.cs
237+
238+
# Including strong name files can present a security risk
239+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
240+
#*.snk
241+
242+
# Since there are multiple workflows, uncomment next line to ignore bower_components
243+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
244+
#bower_components/
245+
246+
# RIA/Silverlight projects
247+
Generated_Code/
248+
249+
# Backup & report files from converting an old project file
250+
# to a newer Visual Studio version. Backup files are not needed,
251+
# because we have git ;-)
252+
_UpgradeReport_Files/
253+
Backup*/
254+
UpgradeLog*.XML
255+
UpgradeLog*.htm
256+
ServiceFabricBackup/
257+
*.rptproj.bak
258+
259+
# SQL Server files
260+
*.mdf
261+
*.ldf
262+
*.ndf
263+
264+
# Business Intelligence projects
265+
*.rdl.data
266+
*.bim.layout
267+
*.bim_*.settings
268+
*.rptproj.rsuser
269+
*- [Bb]ackup.rdl
270+
*- [Bb]ackup ([0-9]).rdl
271+
*- [Bb]ackup ([0-9][0-9]).rdl
272+
273+
# Microsoft Fakes
274+
FakesAssemblies/
275+
276+
# GhostDoc plugin setting file
277+
*.GhostDoc.xml
278+
279+
# Node.js Tools for Visual Studio
280+
.ntvs_analysis.dat
281+
node_modules/
282+
283+
# Visual Studio 6 build log
284+
*.plg
285+
286+
# Visual Studio 6 workspace options file
287+
*.opt
288+
289+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
290+
*.vbw
291+
292+
# Visual Studio LightSwitch build output
293+
**/*.HTMLClient/GeneratedArtifacts
294+
**/*.DesktopClient/GeneratedArtifacts
295+
**/*.DesktopClient/ModelManifest.xml
296+
**/*.Server/GeneratedArtifacts
297+
**/*.Server/ModelManifest.xml
298+
_Pvt_Extensions
299+
300+
# Paket dependency manager
301+
.paket/paket.exe
302+
paket-files/
303+
304+
# FAKE - F# Make
305+
.fake/
306+
307+
# CodeRush personal settings
308+
.cr/personal
309+
310+
# Python Tools for Visual Studio (PTVS)
311+
__pycache__/
312+
*.pyc
313+
314+
# Cake - Uncomment if you are using it
315+
# tools/**
316+
# !tools/packages.config
317+
318+
# Tabs Studio
319+
*.tss
320+
321+
# Telerik's JustMock configuration file
322+
*.jmconfig
323+
324+
# BizTalk build output
325+
*.btp.cs
326+
*.btm.cs
327+
*.odx.cs
328+
*.xsd.cs
329+
330+
# OpenCover UI analysis results
331+
OpenCover/
332+
333+
# Azure Stream Analytics local run output
334+
ASALocalRun/
335+
336+
# MSBuild Binary and Structured Log
337+
*.binlog
338+
339+
# NVidia Nsight GPU debugger configuration file
340+
*.nvuser
341+
342+
# MFractors (Xamarin productivity tool) working folder
343+
.mfractor/
344+
345+
# Local History for Visual Studio
346+
.localhistory/
347+
348+
# BeatPulse healthcheck temp database
349+
healthchecksdb
350+
351+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
352+
MigrationBackup/
353+
354+
# Ionide (cross platform F# VS Code tools) working folder
355+
.ionide/

0 commit comments

Comments
 (0)