No functions in C# DLL with RGiesecke.DllExport
I am trying to make a DLL in C# for use in a couple other languages. I found RGiesecke's DllExport but it doesn't seem to work. It builds just fine and makes a dll, but when I open it in Dependency Walker it doesn't show any functions, and my calling code can't find them either. I created a new "Class Library" project (VS 2013) and then installed "Unmanaged Exports (DllExport for .Net)" from NuGet. Are there any project settings I need? Here is my code. using System; using System.Collections.Generic; using System.Text; using RGiesecke.DllExport; namespace ToolServiceDLL { public class Class1 {