我正在尝试在不提供额外 *.dll 的情况下解压缩文件。出于这个原因,我正在使用 System.IO.Compression 中的 ZipArchive 类。
我添加了 System.IO.Compression 和 System.IO.Compression.FileSystem 作为参考,在我自己的计算机上,一切正常。不过朋友用不了,因为上线就崩溃了
ZipArchive archive = ZipFile.Open(local, ZipArchiveMode.Read);
我是否需要提供额外的 *.dll 才能正常工作?有什么问题?