gpt4 book ai didi

.net - 如何从Azure Function添加 "System.ServiceModel"的引用?

转载 作者:行者123 更新时间:2023-12-03 21:14:37 27 4
gpt4 key购买 nike

我正在从 Azure Function 调用 SOAP 服务,为此我需要添加 System.ServiceModel 程序集的引用。我可以使用 Nuget 添加其他依赖项,但由于此特定程序集是框架程序集,因此不确定如何在我的 Azure 函数中添加此程序集的引用。

目前我收到以下编译错误:

error CS0012: The type 'ClientBase<>' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.

使用 Kudu 将该程序集复制到 bin 文件夹将是我最不想尝试的事情:)

关于更好的方法有什么建议吗?

感谢和问候,

尼曼

最佳答案

https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-csharp

您可以通过#r“AssemblyName”指令引用系统程序集

#r "System.Web.Http"

using System.Net;
using System.Net.Http;
using System.Threading.Tasks;

公共(public)静态任务运行(HttpRequestMessage req,TraceWriter日志)

关于.net - 如何从Azure Function添加 "System.ServiceModel"的引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41283709/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com