今天 build 一个 ASP.NET Core 项目时总是出现下面的错误:
CS1704: An assembly with the same simple name 'Cnblogs.Cache' has already been imported. Try removing one of the references or sign them to enable side-by-side.
请问如何解决?
这个 ASP.NET Core 项目引用了 Cnblogs.Cache 项目(Cnblogs.Cache.csproj),而它依赖的一个 nuget 包中包含了 Cnblogs.Cache.dll ,就是这个原因引起的,移除这个 nuget 包问题就解决了
是不是包含Cnblogs.Cache的项目本身引用了自己啊?