Tom Gullen
Tom Gullen

Reputation: 61729

MVC mini profiler from Stack Overflow (installation)

I've downloaded the mini profiler: http://code.google.com/p/mvc-mini-profiler/

I'm using ASP.net 4.0 with webforms (VS 2010). I'm really confused how to install this. I've opened the various projects included in the download, most don't open without errors.

I was sort of expecting a DLL just to include, but this is obviously wrong! I've searched for installation instructions but can't find any.

Can anyone please help me?

Upvotes: 1

Views: 1000

Answers (1)

alexn
alexn

Reputation: 58952

The easiest way to download it is via Nuget. Just right click on the project you want to add it to, click on Manage Nuget Packages and search for MiniProfiler, then just click install. Another option is to bring up the Package Manager Console and type:

Install-Package MiniProfiler

Upvotes: 5

Related Questions