Skip to content

Commit 8a7eed3

Browse files
author
ardizioa
committed
Remove trash
1 parent f81d557 commit 8a7eed3

File tree

8 files changed

+333
-156
lines changed

8 files changed

+333
-156
lines changed

.gitignore

Lines changed: 333 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,336 @@
3535
*.ear
3636

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

.history/.gitignore_20180523093150

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)