在门户网站编辑器中更新csproj File Azure功能

时间:2018-11-23 10:24:11

标签: c# azure azure-functions sendgrid azure-webjobs

我正在编写一个需要NuGet软件包Sendgrid的Azure函数。我发现的唯一方法是更新.csproj文件。

现在,在“查看文件”选项中,我无法返回到父目录,但可以从控制台进入。我只需要更新父目录中的.csproj文件即可更新Nuget软件包。

我需要门户编辑器中提供的所有工作。我知道我可以通过任何IDE发布代码

谢谢

更新1: Link to update csproj,但在链接后未建立对Sendgrid的引用

更新2 :(答案) Link to manually add Nuget Package这对我有用。但是Update 1值得尝试

1 个答案:

答案 0 :(得分:1)

我发现的唯一方法是更新.csproj文件

要将NuGet包添加到Azure函数,可以将其添加到门户中的project.json文件中:

enter image description here

然后在.csx文件中引用它:

enter image description here