Skip to content

Commit 7315b4e

Browse files
committed
adds plugins
1 parent c2e6714 commit 7315b4e

File tree

411 files changed

+63994
-22
lines changed

Some content is hidden

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

411 files changed

+63994
-22
lines changed

.gitignore

Lines changed: 353 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,356 @@ Plugins/*/Intermediate/*
7272

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

.idea/.idea.Nevermore/.idea/.gitignore

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.Nevermore/.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.Nevermore/.idea/indexLayout.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.Nevermore/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)