UnmanagedExports 1.2.7

dotnet add package UnmanagedExports --version 1.2.7
NuGet\Install-Package UnmanagedExports -Version 1.2.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="UnmanagedExports" Version="1.2.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UnmanagedExports --version 1.2.7
#r "nuget: UnmanagedExports, 1.2.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install UnmanagedExports as a Cake Addin
#addin nuget:?package=UnmanagedExports&version=1.2.7

// Install UnmanagedExports as a Cake Tool
#tool nuget:?package=UnmanagedExports&version=1.2.7

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 Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on UnmanagedExports:

Package Downloads
MQL4CSharp

Metatrader MQL library for C#

Wyam.Modules.TextGeneration

Wyam is a simple to use, highly modular, and extremely configurable static content generator. This library provides support for generating text.

TouristarModels

Package Description

TalkProcessor.LexicalAnalyzer

Package Description

GitHub repositories (11)

Showing the top 5 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.
Version Downloads Last updated
1.2.7 791,720 8/16/2015
1.2.6 50,883 11/7/2013
1.2.5.18722-Debug 2,336 6/26/2013
1.2.4.23262 7,114 3/11/2013
1.2.3-Beta 1,893 12/20/2012
1.2.2.23707 3,777 10/29/2012
1.2.1.28778 2,547 10/17/2012

- will use the most recent version of Microsoft.Build.Utilities.ToolLocationHelper to have a greater chance of finding the exact ildasm/ilasm for the project's target framework version

- no longer fails the build when it can't find lib.exe

- proper overridable MSBuild properties (see tools/RGiesecke.DllExport.targets)