tjanczuk / edge

Run .NET and Node.js code in-process on Windows, MacOS, and Linux
http://tjanczuk.github.io/edge
Other
5.42k stars 640 forks source link

Could not load Startup #686

Closed setsenbat closed 3 months ago

setsenbat commented 5 years ago

Hi all,

Currently my nodejs trows me such error:

'return edge.initializeClrFunc(options); ^ Error: Could not load type 'Startup' from assembly 'kzak5ddr, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'.'

Could you please suggest me which additional DLL or dependency I need to enter in order to make below imports to work?

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel; using System.Data; using System.Drawing; using System.Runtime.InteropServices;

I already have made following reference:

var helloWorld = edge.func({ source: './dll/edge.cs', references: ['System.Data.dll'] });

Thank you!