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

.gitignore 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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. # Visual Studio profiler
  97. *.psess
  98. *.vsp
  99. *.vspx
  100. *.sap
  101. # TFS 2012 Local Workspace
  102. $tf/
  103. # Guidance Automation Toolkit
  104. *.gpState
  105. # ReSharper is a .NET coding add-in
  106. _ReSharper*/
  107. *.[Rr]e[Ss]harper
  108. *.DotSettings.user
  109. # JustCode is a .NET coding add-in
  110. .JustCode
  111. # TeamCity is a build add-in
  112. _TeamCity*
  113. # DotCover is a Code Coverage Tool
  114. *.dotCover
  115. # NCrunch
  116. _NCrunch_*
  117. .*crunch*.local.xml
  118. nCrunchTemp_*
  119. # MightyMoose
  120. *.mm.*
  121. AutoTest.Net/
  122. # Web workbench (sass)
  123. .sass-cache/
  124. # Installshield output folder
  125. [Ee]xpress/
  126. # DocProject is a documentation generator add-in
  127. DocProject/buildhelp/
  128. DocProject/Help/*.HxT
  129. DocProject/Help/*.HxC
  130. DocProject/Help/*.hhc
  131. DocProject/Help/*.hhk
  132. DocProject/Help/*.hhp
  133. DocProject/Help/Html2
  134. DocProject/Help/html
  135. # Click-Once directory
  136. publish/
  137. # Publish Web Output
  138. *.[Pp]ublish.xml
  139. *.azurePubxml
  140. # TODO: Comment the next line if you want to checkin your web deploy settings
  141. # but database connection strings (with potential passwords) will be unencrypted
  142. *.pubxml
  143. *.publishproj
  144. # NuGet Packages
  145. *.nupkg
  146. # The packages folder can be ignored because of Package Restore
  147. **/packages/*
  148. # except build/, which is used as an MSBuild target.
  149. !**/packages/build/
  150. # Uncomment if necessary however generally it will be regenerated when needed
  151. #!**/packages/repositories.config
  152. # Windows Azure Build Output
  153. csx/
  154. *.build.csdef
  155. # Windows Store app package directory
  156. AppPackages/
  157. # Visual Studio cache files
  158. # files ending in .cache can be ignored
  159. *.[Cc]ache
  160. # but keep track of directories ending in .cache
  161. !*.[Cc]ache/
  162. # Others
  163. ClientBin/
  164. [Ss]tyle[Cc]op.*
  165. ~$*
  166. *~
  167. *.dbmdl
  168. *.dbproj.schemaview
  169. *.pfx
  170. *.publishsettings
  171. node_modules/
  172. orleans.codegen.cs
  173. # RIA/Silverlight projects
  174. Generated_Code/
  175. # Backup & report files from converting an old project file
  176. # to a newer Visual Studio version. Backup files are not needed,
  177. # because we have git ;-)
  178. _UpgradeReport_Files/
  179. Backup*/
  180. UpgradeLog*.XML
  181. UpgradeLog*.htm
  182. # SQL Server files
  183. *.mdf
  184. *.ldf
  185. # Business Intelligence projects
  186. *.rdl.data
  187. *.bim.layout
  188. *.bim_*.settings
  189. # Microsoft Fakes
  190. FakesAssemblies/
  191. # Node.js Tools for Visual Studio
  192. .ntvs_analysis.dat
  193. # Visual Studio 6 build log
  194. *.plg
  195. # Visual Studio 6 workspace options file
  196. *.opt
  197. # Visual Studio LightSwitch build output
  198. **/*.HTMLClient/GeneratedArtifacts
  199. **/*.DesktopClient/GeneratedArtifacts
  200. **/*.DesktopClient/ModelManifest.xml
  201. **/*.Server/GeneratedArtifacts
  202. **/*.Server/ModelManifest.xml
  203. _Pvt_Extensions