使用 VS 2019 在 csx 文件中找不到元数据文件
Metadata file not be found in csx file with VS 2019
几天来我研究了这个问题的其他答案,none 的解决方案似乎适合我的情况。
- 错误信息:"error CS0006: Metadata file 'Newtonsoft.Json.dll' could not be found"
- Visual Studio 2019
- .NET Core c# 控制台项目
- .csx 文件中包含用于脚本编写的编码。请注意 "Newtonsoft.Json" 可以在 .cs 文件中找到。
问题已通过提供 dll 文件的完整路径得到解决:
更换
#r "Newtonsoft.Json.dll"
和
#r "c:\full_path\Newtonsoft.Json.dll"
它出现在 VS 2019 中,CSX 文件不知道通过 NuGet 添加的 dll 的路径,但它确实识别 .NET 库,例如 System.
几天来我研究了这个问题的其他答案,none 的解决方案似乎适合我的情况。
- 错误信息:"error CS0006: Metadata file 'Newtonsoft.Json.dll' could not be found"
- Visual Studio 2019
- .NET Core c# 控制台项目
- .csx 文件中包含用于脚本编写的编码。请注意 "Newtonsoft.Json" 可以在 .cs 文件中找到。
问题已通过提供 dll 文件的完整路径得到解决: 更换 #r "Newtonsoft.Json.dll" 和 #r "c:\full_path\Newtonsoft.Json.dll"
它出现在 VS 2019 中,CSX 文件不知道通过 NuGet 添加的 dll 的路径,但它确实识别 .NET 库,例如 System.