Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit dc1a361

Browse files
committed
initial commit
1 parent e5ead1c commit dc1a361

15 files changed

+1759
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)