我在用C#脚本编写的Azure门户功能应用程序中遇到错误。

错误CS0103:名称“ ZipFile”在当前上下文中不存在

我尝试使用nuget.exe安装System.IO.Compression.FileSystem.dll,但我也无法添加该程序包。错误如下。

D:\ home \ site \ wwwroot无法找到软件包
'System.IO.Compression.FileSystem.dll'

请帮我。

谢谢。

最佳答案

如下所示添加程序集和导入名称空间。它对我有效。

#r "System.IO.Compression.FileSystem"

using System.IO.Compression;

09-28 03:42