Skip to content

Commit 27d4ac2

Browse files
authored
Merge pull request #9 from superolmo/dev
Dev
2 parents 4b2e478 + 73878b1 commit 27d4ac2

17 files changed

Lines changed: 781 additions & 42 deletions

.gitignore

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

0 commit comments

Comments
 (0)