Skip to content

Commit 04b7909

Browse files
committed
draft code to loader dll
1 parent 0030a9e commit 04b7909

20 files changed

+1389
-0
lines changed

.gitignore

+378
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,378 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Compiled Object files
5+
*.slo
6+
*.lo
7+
*.o
8+
*.obj
9+
*.exp
10+
11+
# Precompiled Headers
12+
*.gch
13+
*.pch
14+
15+
# Compiled Dynamic libraries
16+
*.so
17+
*.dylib
18+
*.dll
19+
20+
# Fortran module files
21+
*.mod
22+
*.smod
23+
24+
# Compiled Static libraries
25+
*.lai
26+
*.la
27+
*.a
28+
*.lib
29+
30+
# Executables
31+
*.exe
32+
*.out
33+
*.app
34+
35+
## Ignore Visual Studio temporary files, build results, and
36+
## files generated by popular Visual Studio add-ons.
37+
##
38+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
39+
40+
# User-specific files
41+
*.rsuser
42+
*.suo
43+
*.user
44+
*.userosscache
45+
*.sln.docstates
46+
47+
# User-specific files (MonoDevelop/Xamarin Studio)
48+
*.userprefs
49+
50+
# Build results
51+
[Dd]ebug/
52+
[Dd]ebugPublic/
53+
[Rr]elease/
54+
[Rr]eleases/
55+
x64/
56+
x86/
57+
[Aa][Rr][Mm]/
58+
[Aa][Rr][Mm]64/
59+
bld/
60+
[Bb]in/
61+
[Oo]bj/
62+
[Ll]og/
63+
64+
# allow our bin directory
65+
!bin/
66+
67+
# Visual Studio 2015/2017 cache/options directory
68+
.vs/
69+
# Uncomment if you have tasks that create the project's static files in wwwroot
70+
#wwwroot/
71+
72+
# Visual Studio 2017 auto generated files
73+
Generated\ Files/
74+
75+
# MSTest test Results
76+
[Tt]est[Rr]esult*/
77+
[Bb]uild[Ll]og.*
78+
79+
# NUNIT
80+
*.VisualState.xml
81+
TestResult.xml
82+
83+
# Build Results of an ATL Project
84+
[Dd]ebugPS/
85+
[Rr]eleasePS/
86+
dlldata.c
87+
88+
# Benchmark Results
89+
BenchmarkDotNet.Artifacts/
90+
91+
# .NET Core
92+
project.lock.json
93+
project.fragment.lock.json
94+
artifacts/
95+
96+
# StyleCop
97+
StyleCopReport.xml
98+
99+
# Files built by Visual Studio
100+
*_i.c
101+
*_p.c
102+
*_h.h
103+
*.ilk
104+
*.meta
105+
*.obj
106+
*.iobj
107+
*.pch
108+
*.pdb
109+
*.ipdb
110+
*.pgc
111+
*.pgd
112+
*.rsp
113+
*.sbr
114+
*.tlb
115+
*.tli
116+
*.tlh
117+
*.tmp
118+
*.tmp_proj
119+
*_wpftmp.csproj
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+
# ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true
272+
**/wwwroot/lib/
273+
274+
# RIA/Silverlight projects
275+
Generated_Code/
276+
277+
# Backup & report files from converting an old project file
278+
# to a newer Visual Studio version. Backup files are not needed,
279+
# because we have git ;-)
280+
_UpgradeReport_Files/
281+
Backup*/
282+
UpgradeLog*.XML
283+
UpgradeLog*.htm
284+
ServiceFabricBackup/
285+
*.rptproj.bak
286+
287+
# SQL Server files
288+
*.mdf
289+
*.ldf
290+
*.ndf
291+
292+
# Business Intelligence projects
293+
*.rdl.data
294+
*.bim.layout
295+
*.bim_*.settings
296+
*.rptproj.rsuser
297+
298+
# Microsoft Fakes
299+
FakesAssemblies/
300+
301+
# GhostDoc plugin setting file
302+
*.GhostDoc.xml
303+
304+
# Node.js Tools for Visual Studio
305+
.ntvs_analysis.dat
306+
node_modules/
307+
308+
# Visual Studio 6 build log
309+
*.plg
310+
311+
# Visual Studio 6 workspace options file
312+
*.opt
313+
314+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
315+
*.vbw
316+
317+
# Visual Studio LightSwitch build output
318+
**/*.HTMLClient/GeneratedArtifacts
319+
**/*.DesktopClient/GeneratedArtifacts
320+
**/*.DesktopClient/ModelManifest.xml
321+
**/*.Server/GeneratedArtifacts
322+
**/*.Server/ModelManifest.xml
323+
_Pvt_Extensions
324+
325+
# Paket dependency manager
326+
.paket/paket.exe
327+
paket-files/
328+
329+
# FAKE - F# Make
330+
.fake/
331+
332+
# JetBrains Rider
333+
.idea/
334+
*.sln.iml
335+
336+
# CodeRush personal settings
337+
.cr/personal
338+
339+
# Python Tools for Visual Studio (PTVS)
340+
__pycache__/
341+
*.pyc
342+
343+
# Cake - Uncomment if you are using it
344+
# tools/**
345+
# !tools/packages.config
346+
347+
# Tabs Studio
348+
*.tss
349+
350+
# Telerik's JustMock configuration file
351+
*.jmconfig
352+
353+
# BizTalk build output
354+
*.btp.cs
355+
*.btm.cs
356+
*.odx.cs
357+
*.xsd.cs
358+
359+
# OpenCover UI analysis results
360+
OpenCover/
361+
362+
# Azure Stream Analytics local run output
363+
ASALocalRun/
364+
365+
# MSBuild Binary and Structured Log
366+
*.binlog
367+
368+
# NVidia Nsight GPU debugger configuration file
369+
*.nvuser
370+
371+
# MFractors (Xamarin productivity tool) working folder
372+
.mfractor/
373+
374+
# Local History for Visual Studio
375+
.localhistory/
376+
377+
# BeatPulse healthcheck temp database
378+
healthchecksdb

0 commit comments

Comments
 (0)