SSH.NET with Azure Functions on Visual Studio 2015



我正在尝试使用Visual Studio 2015运行具有Azure函数的简单SFTP客户端。 问题是我不知道如何将 nuget 引用添加到 SSH.NET。 在project.json试图添加:

{
"net40": {
"dependencies": {
"Renci.SshNet": "2016.0.0.0"
}
}

} }

我也尝试过使用"net46:",但无论我做什么,我都会不断NotFound https://api.nuget.org/v3-flatcontainer/renci.sshnet/index.json

我以后可能需要添加更多 nuget 包,所以我想知道通常如何将 nuget 包添加到我的函数项目中

试试这个

{
"frameworks": {
"net46": {
"dependencies": {
"SSH.NET": "2016.0.0"
}
}
}
}

编辑:另请注意,Visual Studio 2017中的新工具对这些依赖项使用标准.NET csproj以及标准nuget和其他VS工具,因此可能值得检查一下。

相关内容

  • 没有找到相关文章

最新更新