Skip to content

Commit ade2e67

Browse files
committed
tweaked gitignore
2 parents 92d16b2 + 57f8f1b commit ade2e67

File tree

1 file changed

+390
-1
lines changed

1 file changed

+390
-1
lines changed

.gitignore

Lines changed: 390 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,393 @@ fabric.properties
8282
.idea/httpRequests
8383

8484
# Android studio 3.1+ serialized cache file
85-
.idea/caches/build_file_checksums.ser
85+
.idea/caches/build_file_checksums.ser
86+
87+
## Ignore Visual Studio temporary files, build results, and
88+
## files generated by popular Visual Studio add-ons.
89+
##
90+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
91+
92+
# User-specific files
93+
*.rsuser
94+
*.suo
95+
*.user
96+
*.userosscache
97+
*.sln.docstates
98+
99+
# User-specific files (MonoDevelop/Xamarin Studio)
100+
*.userprefs
101+
102+
# Mono auto generated files
103+
mono_crash.*
104+
105+
# Build results
106+
[Dd]ebug/
107+
[Dd]ebugPublic/
108+
[Rr]elease/
109+
[Rr]eleases/
110+
x64/
111+
x86/
112+
[Ww][Ii][Nn]32/
113+
[Aa][Rr][Mm]/
114+
[Aa][Rr][Mm]64/
115+
bld/
116+
[Bb]in/
117+
[Oo]bj/
118+
[Ll]og/
119+
[Ll]ogs/
120+
121+
# Visual Studio 2015/2017 cache/options directory
122+
.vs/
123+
# Uncomment if you have tasks that create the project's static files in wwwroot
124+
#wwwroot/
125+
126+
# Visual Studio 2017 auto generated files
127+
Generated\ Files/
128+
129+
# MSTest test Results
130+
[Tt]est[Rr]esult*/
131+
[Bb]uild[Ll]og.*
132+
133+
# NUnit
134+
*.VisualState.xml
135+
TestResult.xml
136+
nunit-*.xml
137+
138+
# Build Results of an ATL Project
139+
[Dd]ebugPS/
140+
[Rr]eleasePS/
141+
dlldata.c
142+
143+
# Benchmark Results
144+
BenchmarkDotNet.Artifacts/
145+
146+
# .NET Core
147+
project.lock.json
148+
project.fragment.lock.json
149+
artifacts/
150+
151+
# ASP.NET Scaffolding
152+
ScaffoldingReadMe.txt
153+
154+
# StyleCop
155+
StyleCopReport.xml
156+
157+
# Files built by Visual Studio
158+
*_i.c
159+
*_p.c
160+
*_h.h
161+
*.ilk
162+
*.meta
163+
*.obj
164+
*.iobj
165+
*.pch
166+
*.pdb
167+
*.ipdb
168+
*.pgc
169+
*.pgd
170+
*.rsp
171+
*.sbr
172+
*.tlb
173+
*.tli
174+
*.tlh
175+
*.tmp
176+
*.tmp_proj
177+
*_wpftmp.csproj
178+
*.log
179+
*.tlog
180+
*.vspscc
181+
*.vssscc
182+
.builds
183+
*.pidb
184+
*.svclog
185+
*.scc
186+
187+
# Chutzpah Test files
188+
_Chutzpah*
189+
190+
# Visual C++ cache files
191+
ipch/
192+
*.aps
193+
*.ncb
194+
*.opendb
195+
*.opensdf
196+
*.sdf
197+
*.cachefile
198+
*.VC.db
199+
*.VC.VC.opendb
200+
201+
# Visual Studio profiler
202+
*.psess
203+
*.vsp
204+
*.vspx
205+
*.sap
206+
207+
# Visual Studio Trace Files
208+
*.e2e
209+
210+
# TFS 2012 Local Workspace
211+
$tf/
212+
213+
# Guidance Automation Toolkit
214+
*.gpState
215+
216+
# ReSharper is a .NET coding add-in
217+
_ReSharper*/
218+
*.[Rr]e[Ss]harper
219+
*.DotSettings.user
220+
221+
# TeamCity is a build add-in
222+
_TeamCity*
223+
224+
# DotCover is a Code Coverage Tool
225+
*.dotCover
226+
227+
# AxoCover is a Code Coverage Tool
228+
.axoCover/*
229+
!.axoCover/settings.json
230+
231+
# Coverlet is a free, cross platform Code Coverage Tool
232+
coverage*.json
233+
coverage*.xml
234+
coverage*.info
235+
236+
# Visual Studio code coverage results
237+
*.coverage
238+
*.coveragexml
239+
240+
# NCrunch
241+
_NCrunch_*
242+
.*crunch*.local.xml
243+
nCrunchTemp_*
244+
245+
# MightyMoose
246+
*.mm.*
247+
AutoTest.Net/
248+
249+
# Web workbench (sass)
250+
.sass-cache/
251+
252+
# Installshield output folder
253+
[Ee]xpress/
254+
255+
# DocProject is a documentation generator add-in
256+
DocProject/buildhelp/
257+
DocProject/Help/*.HxT
258+
DocProject/Help/*.HxC
259+
DocProject/Help/*.hhc
260+
DocProject/Help/*.hhk
261+
DocProject/Help/*.hhp
262+
DocProject/Help/Html2
263+
DocProject/Help/html
264+
265+
# Click-Once directory
266+
publish/
267+
268+
# Publish Web Output
269+
*.[Pp]ublish.xml
270+
*.azurePubxml
271+
# Note: Comment the next line if you want to checkin your web deploy settings,
272+
# but database connection strings (with potential passwords) will be unencrypted
273+
*.pubxml
274+
*.publishproj
275+
276+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
277+
# checkin your Azure Web App publish settings, but sensitive information contained
278+
# in these scripts will be unencrypted
279+
PublishScripts/
280+
281+
# NuGet Packages
282+
*.nupkg
283+
# NuGet Symbol Packages
284+
*.snupkg
285+
# The packages folder can be ignored because of Package Restore
286+
**/[Pp]ackages/*
287+
# except build/, which is used as an MSBuild target.
288+
!**/[Pp]ackages/build/
289+
# Uncomment if necessary however generally it will be regenerated when needed
290+
#!**/[Pp]ackages/repositories.config
291+
# NuGet v3's project.json files produces more ignorable files
292+
*.nuget.props
293+
*.nuget.targets
294+
295+
# Nuget personal access tokens and Credentials
296+
# nuget.config
297+
298+
# Microsoft Azure Build Output
299+
csx/
300+
*.build.csdef
301+
302+
# Microsoft Azure Emulator
303+
ecf/
304+
rcf/
305+
306+
# Windows Store app package directories and files
307+
AppPackages/
308+
BundleArtifacts/
309+
Package.StoreAssociation.xml
310+
_pkginfo.txt
311+
*.appx
312+
*.appxbundle
313+
*.appxupload
314+
315+
# Visual Studio cache files
316+
# files ending in .cache can be ignored
317+
*.[Cc]ache
318+
# but keep track of directories ending in .cache
319+
!?*.[Cc]ache/
320+
321+
# Others
322+
ClientBin/
323+
~$*
324+
*~
325+
*.dbmdl
326+
*.dbproj.schemaview
327+
*.jfm
328+
*.pfx
329+
*.publishsettings
330+
orleans.codegen.cs
331+
332+
# Including strong name files can present a security risk
333+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
334+
#*.snk
335+
336+
# Since there are multiple workflows, uncomment next line to ignore bower_components
337+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
338+
#bower_components/
339+
340+
# RIA/Silverlight projects
341+
Generated_Code/
342+
343+
# Backup & report files from converting an old project file
344+
# to a newer Visual Studio version. Backup files are not needed,
345+
# because we have git ;-)
346+
_UpgradeReport_Files/
347+
Backup*/
348+
UpgradeLog*.XML
349+
UpgradeLog*.htm
350+
ServiceFabricBackup/
351+
*.rptproj.bak
352+
353+
# SQL Server files
354+
*.mdf
355+
*.ldf
356+
*.ndf
357+
358+
# Business Intelligence projects
359+
*.rdl.data
360+
*.bim.layout
361+
*.bim_*.settings
362+
*.rptproj.rsuser
363+
*- [Bb]ackup.rdl
364+
*- [Bb]ackup ([0-9]).rdl
365+
*- [Bb]ackup ([0-9][0-9]).rdl
366+
367+
# Microsoft Fakes
368+
FakesAssemblies/
369+
370+
# GhostDoc plugin setting file
371+
*.GhostDoc.xml
372+
373+
# Node.js Tools for Visual Studio
374+
.ntvs_analysis.dat
375+
node_modules/
376+
377+
# Visual Studio 6 build log
378+
*.plg
379+
380+
# Visual Studio 6 workspace options file
381+
*.opt
382+
383+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
384+
*.vbw
385+
386+
# Visual Studio LightSwitch build output
387+
**/*.HTMLClient/GeneratedArtifacts
388+
**/*.DesktopClient/GeneratedArtifacts
389+
**/*.DesktopClient/ModelManifest.xml
390+
**/*.Server/GeneratedArtifacts
391+
**/*.Server/ModelManifest.xml
392+
_Pvt_Extensions
393+
394+
# Paket dependency manager
395+
.paket/paket.exe
396+
paket-files/
397+
398+
# FAKE - F# Make
399+
.fake/
400+
401+
# CodeRush personal settings
402+
.cr/personal
403+
404+
# Python Tools for Visual Studio (PTVS)
405+
__pycache__/
406+
*.pyc
407+
408+
# Cake - Uncomment if you are using it
409+
# tools/**
410+
# !tools/packages.config
411+
412+
# Tabs Studio
413+
*.tss
414+
415+
# Telerik's JustMock configuration file
416+
*.jmconfig
417+
418+
# BizTalk build output
419+
*.btp.cs
420+
*.btm.cs
421+
*.odx.cs
422+
*.xsd.cs
423+
424+
# OpenCover UI analysis results
425+
OpenCover/
426+
427+
# Azure Stream Analytics local run output
428+
ASALocalRun/
429+
430+
# MSBuild Binary and Structured Log
431+
*.binlog
432+
433+
# NVidia Nsight GPU debugger configuration file
434+
*.nvuser
435+
436+
# MFractors (Xamarin productivity tool) working folder
437+
.mfractor/
438+
439+
# Local History for Visual Studio
440+
.localhistory/
441+
442+
# BeatPulse healthcheck temp database
443+
healthchecksdb
444+
445+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
446+
MigrationBackup/
447+
448+
# Ionide (cross platform F# VS Code tools) working folder
449+
.ionide/
450+
451+
# Fody - auto-generated XML schema
452+
FodyWeavers.xsd
453+
454+
# VS Code files for those working on multiple tools
455+
.vscode/*
456+
!.vscode/settings.json
457+
!.vscode/tasks.json
458+
!.vscode/launch.json
459+
!.vscode/extensions.json
460+
*.code-workspace
461+
462+
# Local History for Visual Studio Code
463+
.history/
464+
465+
# Windows Installer files from build outputs
466+
*.cab
467+
*.msi
468+
*.msix
469+
*.msm
470+
*.msp
471+
472+
# JetBrains Rider
473+
.idea/
474+
*.sln.iml

0 commit comments

Comments
 (0)