我做了以下工作:
使用dotnet new console.
using System;
using EdgeJs;
...我发现了一个错误:
The type or namespace name 'EdgeJs' could not be found
我出什么问题了?
发布于 2022-06-27 05:15:31
问题是项目是使用默认框架(即net50 )创建的。根据Edge.js包描述,这是不支持的。我把它改成了net48,它起了作用。
https://stackoverflow.com/questions/71634819
复制相似问题