Denis Sokolov
Denis Sokolov

Reputation: 85

Native binaries in NuGet package installed into DNX project

I've created NuGet package containing native x86 binaries. Binaries are copying to bin directory by MSBuild script from this answer.

But this approach does not work with DNX projects (ASP.NET 5 web app for example), because MSBuild script is not installing. So I have FileNotFoundException.

How to make it alive?

Upvotes: 0

Views: 227

Answers (1)

Denis Sokolov
Denis Sokolov

Reputation: 85

Solution for me was to make runtimes\win\native directory in NuGet package structure, as described here: https://docs.nuget.org/Create/uwp-create

In runtime DNX adds this directory to PATH variable, so managed dll can load it.

Upvotes: 1

Related Questions