UnmanagedExports 1.2.6
dotnet add package UnmanagedExports --version 1.2.6
NuGet\Install-Package UnmanagedExports -Version 1.2.6
<PackageReference Include="UnmanagedExports" Version="1.2.6" />
<PackageVersion Include="UnmanagedExports" Version="1.2.6" />
<PackageReference Include="UnmanagedExports" />
paket add UnmanagedExports --version 1.2.6
#r "nuget: UnmanagedExports, 1.2.6"
#addin nuget:?package=UnmanagedExports&version=1.2.6
#tool nuget:?package=UnmanagedExports&version=1.2.6
A set of compile-time libraries (nothing to deploy) and a build task that enable you to export functions from managed code to native applications.
That means, you can create plugins in a managed language like C# or F# for native applications that only have a C-Api (like Notepad++).
The nuget package is all you need. Just mark your methods with [DllExport] and build for x86, x64 or ia64.
Hints:
- You have to set your platform target to either x86, ia64 or x64. AnyCPU assemblies cannot export functions.
- The export name defaults to the method name and the calling convention to stdcall. If that's all what you want, you can just use [DllExport] without parameters.
- You cannot put your exports in generic types or export generic methods. (The CLR wouldn't know what type parameters to use)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
GitHub repositories (11)
Showing the top 11 popular GitHub repositories that depend on UnmanagedExports:
Repository | Stars |
---|---|
nefarius/ScpToolkit
Windows Driver and XInput Wrapper for Sony DualShock 3/4 Controllers
|
|
p3nt4/PowerShdll
Run PowerShell with rundll32. Bypass software restrictions.
|
|
GhostPack/KeeThief
Methods for attacking KeePass 2.X databases, including extracting of encryption key material from memory.
|
|
mandiant/DueDLLigence
|
|
iomoath/PowerShx
Run Powershell without software restrictions.
|
|
rvrsh3ll/CPLResourceRunner
Run shellcode from resource
|
|
ghorsington/COM3D2.MaidFiddler
Maid Fiddler for COM3D2 -- a real-time value editor for COM3D2
|
|
Andy53/ERC.Xdbg
An Xdbg Plugin of the ERC Library.
|
|
jason51553262/MQL4CSharp
C# Library for Metatrader 4
|
|
Phylliida/UnityWindowsCapture
A framework to capture individual windows or the entire desktop in Unity
|
|
p3nt4/RunDLL.Net
Execute .Net assemblies using Rundll32.exe
|
Version | Downloads | Last updated |
---|---|---|
1.2.6 | 9,984 | 11/7/2013 |
1.2.5.18722-Debug | 82 | 6/26/2013 |
1.2.4.23262 | 374 | 3/11/2013 |
1.2.3-Beta | 68 | 12/20/2012 |
1.2.2.23707 | 212 | 10/29/2012 |
1.2.1.28778 | 65 | 10/17/2012 |
- package restore will now work as expected
- file extensions otherthan dll are possible now (e.g. .plugin)
- some fixes regarding the creation of .exp, .def and .lib files
- changed the nuget scripts to be more resilient
- added new nuget CmdLets
- You will now get warnings in the nuget package manager when a project's platform target is not x86 or x64.
- some refactorings WRT notifications (warnings, etc.)