Barebones library to launch a process with a DLL injected. Intended use-case is to be invoked from C# P/Invoke.

.gitignore 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. # ---> C++
  2. # Compiled Object files
  3. *.slo
  4. *.lo
  5. *.o
  6. *.obj
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Compiled Dynamic libraries
  11. *.so
  12. *.dylib
  13. *.dll
  14. # Fortran module files
  15. *.mod
  16. # Compiled Static libraries
  17. *.lai
  18. *.la
  19. *.a
  20. *.lib
  21. # Executables
  22. *.exe
  23. *.out
  24. *.app
  25. # ---> VisualStudio
  26. ## Ignore Visual Studio temporary files, build results, and
  27. ## files generated by popular Visual Studio add-ons.
  28. # User-specific files
  29. *.suo
  30. *.user
  31. *.userosscache
  32. *.sln.docstates
  33. # User-specific files (MonoDevelop/Xamarin Studio)
  34. *.userprefs
  35. # Build results
  36. [Dd]ebug/
  37. [Dd]ebugPublic/
  38. [Rr]elease/
  39. [Rr]eleases/
  40. x64/
  41. x86/
  42. build/
  43. bld/
  44. [Bb]in/
  45. [Oo]bj/
  46. # Visual Studio 2015 cache/options directory
  47. .vs/
  48. # Uncomment if you have tasks that create the project's static files in wwwroot
  49. #wwwroot/
  50. # MSTest test Results
  51. [Tt]est[Rr]esult*/
  52. [Bb]uild[Ll]og.*
  53. # NUNIT
  54. *.VisualState.xml
  55. TestResult.xml
  56. # Build Results of an ATL Project
  57. [Dd]ebugPS/
  58. [Rr]eleasePS/
  59. dlldata.c
  60. # DNX
  61. project.lock.json
  62. artifacts/
  63. *_i.c
  64. *_p.c
  65. *_i.h
  66. *.ilk
  67. *.meta
  68. *.obj
  69. *.pch
  70. *.pdb
  71. *.pgc
  72. *.pgd
  73. *.rsp
  74. *.sbr
  75. *.tlb
  76. *.tli
  77. *.tlh
  78. *.tmp
  79. *.tmp_proj
  80. *.log
  81. *.vspscc
  82. *.vssscc
  83. .builds
  84. *.pidb
  85. *.svclog
  86. *.scc
  87. # Chutzpah Test files
  88. _Chutzpah*
  89. # Visual C++ cache files
  90. ipch/
  91. *.aps
  92. *.ncb
  93. *.opensdf
  94. *.sdf
  95. *.cachefile
  96. *.VC.db
  97. # Visual Studio profiler
  98. *.psess
  99. *.vsp
  100. *.vspx
  101. *.sap
  102. # TFS 2012 Local Workspace
  103. $tf/
  104. # Guidance Automation Toolkit
  105. *.gpState
  106. # ReSharper is a .NET coding add-in
  107. _ReSharper*/
  108. *.[Rr]e[Ss]harper
  109. *.DotSettings.user
  110. # JustCode is a .NET coding add-in
  111. .JustCode
  112. # TeamCity is a build add-in
  113. _TeamCity*
  114. # DotCover is a Code Coverage Tool
  115. *.dotCover
  116. # NCrunch
  117. _NCrunch_*
  118. .*crunch*.local.xml
  119. nCrunchTemp_*
  120. # MightyMoose
  121. *.mm.*
  122. AutoTest.Net/
  123. # Web workbench (sass)
  124. .sass-cache/
  125. # Installshield output folder
  126. [Ee]xpress/
  127. # DocProject is a documentation generator add-in
  128. DocProject/buildhelp/
  129. DocProject/Help/*.HxT
  130. DocProject/Help/*.HxC
  131. DocProject/Help/*.hhc
  132. DocProject/Help/*.hhk
  133. DocProject/Help/*.hhp
  134. DocProject/Help/Html2
  135. DocProject/Help/html
  136. # Click-Once directory
  137. publish/
  138. # Publish Web Output
  139. *.[Pp]ublish.xml
  140. *.azurePubxml
  141. # TODO: Comment the next line if you want to checkin your web deploy settings
  142. # but database connection strings (with potential passwords) will be unencrypted
  143. *.pubxml
  144. *.publishproj
  145. # NuGet Packages
  146. *.nupkg
  147. # The packages folder can be ignored because of Package Restore
  148. **/packages/*
  149. # except build/, which is used as an MSBuild target.
  150. !**/packages/build/
  151. # Uncomment if necessary however generally it will be regenerated when needed
  152. #!**/packages/repositories.config
  153. # Windows Azure Build Output
  154. csx/
  155. *.build.csdef
  156. # Windows Store app package directory
  157. AppPackages/
  158. # Visual Studio cache files
  159. # files ending in .cache can be ignored
  160. *.[Cc]ache
  161. # but keep track of directories ending in .cache
  162. !*.[Cc]ache/
  163. # Others
  164. ClientBin/
  165. [Ss]tyle[Cc]op.*
  166. ~$*
  167. *~
  168. *.dbmdl
  169. *.dbproj.schemaview
  170. *.pfx
  171. *.publishsettings
  172. node_modules/
  173. orleans.codegen.cs
  174. # RIA/Silverlight projects
  175. Generated_Code/
  176. # Backup & report files from converting an old project file
  177. # to a newer Visual Studio version. Backup files are not needed,
  178. # because we have git ;-)
  179. _UpgradeReport_Files/
  180. Backup*/
  181. UpgradeLog*.XML
  182. UpgradeLog*.htm
  183. # SQL Server files
  184. *.mdf
  185. *.ldf
  186. # Business Intelligence projects
  187. *.rdl.data
  188. *.bim.layout
  189. *.bim_*.settings
  190. # Microsoft Fakes
  191. FakesAssemblies/
  192. # Node.js Tools for Visual Studio
  193. .ntvs_analysis.dat
  194. # Visual Studio 6 build log
  195. *.plg
  196. # Visual Studio 6 workspace options file
  197. *.opt
  198. # Visual Studio LightSwitch build output
  199. **/*.HTMLClient/GeneratedArtifacts
  200. **/*.DesktopClient/GeneratedArtifacts
  201. **/*.DesktopClient/ModelManifest.xml
  202. **/*.Server/GeneratedArtifacts
  203. **/*.Server/ModelManifest.xml
  204. _Pvt_Extensions