Home > front end >  Failed to install ClosedXML dependency
Failed to install ClosedXML dependency

Time:12-16

I need to install ClosedXML dependency to build a C# project with .net framework 4.7.2 but when trying to install I always get the same error: "Cannot resolve dependency 'SixLabors.Fonts'. Sources used: 'nuget.org', 'Microsoft Visual Studio Offline Packages'"

I have tried everything to install from the nuget package manager

CodePudding user response:

What version are you trying to install? I think you should install SixLabors.Fonts first and then install ClosedXML, as the newer versions of ClosedXML depend on it.

  • Related