Problem with mvc mini profiler

I try to get a mini profiler working with code first, and I have a problem. I have miniprofiler and miniprofiler.ef packages from nuget and added

MiniProfilerEF.Initialize(); 

to the application launch method, but when I try to execute the request, I get this error.

 The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047) 

and thoughts on why this might be?

Thanks in advance.

+4
source share
2 answers

This is a known problem with no solution at this time. in order to stay up to date, see here code.google.com/p/mvc-mini-profiler/issues/detail?id=100#c4

+2
source

If you use it as httpmodule then check the names in web.config, maybe there is a type there.

0
source

Source: https://habr.com/ru/post/1369680/


All Articles