这是我的c#Azure函数脚本:
functions:
post-transaction:
handler: your.lambda.LambdaHandler
events:
- http:
path: /{proxy+}
method: any
这将引发错误 run.csx(56,130):错误CS1503:参数4:无法从“ System.Collections.Generic.Dictionary”转换为“ string” 。但是同一件事在Visual Studio中也可以正常工作。怎么了?
答案 0 :(得分:0)
知道了。
I was using {
"frameworks": {
"net46":{
"dependencies": {
"Microsoft.Azure.Management.DataFactory": "0.8.0",
在project.json中自动下载了1.0.0版本。我必须通过明确指定"Microsoft.Azure.Management.DataFactory": "0.8.0-preview",
来强制下载版本0.8.0。