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

Commit 82eda34

Browse files
author
Jack Pendleton
committed
Added v1.7.1 changes
0 parents  commit 82eda34

File tree

170 files changed

+10222
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+10222
-0
lines changed

.github/FUNDING.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: fanman03

.gitignore

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

0 commit comments

Comments
 (0)