抱歉,可能是我没有说清楚。 钉钉 DingTalkCrypto.cs 文件中用到了如下 引用,命名空间为 DTCrypto:
using System;
using System.Text;
using System.Security.Cryptography;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using System.Text.Json.Serialization;
我用VS生成 dll文件时,debug文件夹下生成了下列dll:
DTCryptor.dll
Microsoft.Bcl.Aysnclnterfaces.dll
System.Text.Json.dll
System.Text.Encodings.Web.dll
System.Threading.Tasks.Extensions.dll
System.RuntimeCompilerServices.Unsafe.dll
System.Buffers.dll
我应该把这些 dll文件全部引用到 foxtable ,还是有没有办法 只生成一个 DTCryptor.dll 文件,把所有的依赖包都放进去?
十分感谢!