我目前在我的一个 Azure Functions 中遇到问题。我想使用一个使用 ValueTuple 的库。该库是针对 .net Core 2.0 构建的。这导致我的函数中出现以下错误消息:
Reference to type 'ValueTuple<,>' claims it is defined in 'System.Runtime', but it could not be found
我已经尝试将相应的 Nuget 包添加到我的函数中:
{
"frameworks": {
"net46":{
"dependencies": {
"DocX": "1.2.1",
"MediaTypeMap": "2.1.0",
"System.ValueTuple": "4.5.0"
}
}
}
}
并通过以下方式引用程序集:
#r "System.ValueTuple"
有什么想法可以解决这个问题吗?
非常感谢!