'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']
});
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!