I've my own .dll file that I used to use with Edge.js in nodejs,
I'm trying to use it now with dot net core app, but found no where/no how to get access to it, or define it.
is there something like
"files":
{
"":"MyLibrary.dll"
}
or like
using MyLibraryFile.dll
so that i can use the functions in it?
my assembly file structure is:
MyLibraryFile.dll
namespace MyLibrary
{
public class Inventory
{
public async Task<object> Invoke(object input)
{
}
and neither using MyLbrary;
nor using MyLbraryFile;
worked
I need to use this with MS Code editor, not with MS Studio.
and do not want to use NuGet package
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…