Marcelo Camarate
Marcelo Camarate

Reputation: 65

How install the ClosedXML NuGet

I'm trying to install ClosedXML NuGet in an ASP / VB.NET project that uses .NET Framework 4.0, and I'm getting the following error:

enter image description here

What do I need to do for ClosedXML be installed OK in my project?

Thanks in advance,

Marcelo Camarate

Upvotes: 2

Views: 12162

Answers (2)

Antonio Carito
Antonio Carito

Reputation: 1387

Try to installing the latest NuGet Package Manager.

After the installation, restart Visual Studio.

Link for download the latest version of NuGet:

https://www.nuget.org/downloads

Upvotes: 0

ShaneDemskie
ShaneDemskie

Reputation: 388

I suggest installing using the Package Manager Console.

You can find this in Tools> Nugget Package Manager > Package Manager Console

Once that's up, paste this Install-Package ClosedXMLand hit enter.

Upvotes: 2

Related Questions